C语言程序设计教程
lhbat
这个作者很懒,什么都没留下…
展开
-
C用指针改变相应地址的值
参考教材:C语言程序设计教程例9-1:short为短整形,占两个字节,而char占一个字节.于是有下面的一个程序:#include <stdio.h>int main(){ unsigned short a; unsigned short *pi=&a; char *pc=(char *)&a; *pi=0XF0F0;...原创 2019-04-11 17:42:53 · 3924 阅读 · 0 评论 -
Linux下gets无法使用
如下代码,GCC无法编译:#include <stdio.h>#include <string.h>int main(){ char str[200],ch; char *p,*q; gets(str); //fgets(str,200,stdin); p=str; q=p+strlen(p) -1; wh...原创 2019-04-11 19:42:44 · 3095 阅读 · 1 评论 -
C语言存储类型
转载地址:https://blog.csdn.net/claroja/article/details/79496652c中的每一个变量和函数都有两个属性:类型(type)和存储类型(storage class).存储类型分别是auto(自动),extern(外部),register(寄存器),static(静态)1.auto在函数体中定义的变量缺省是auto.当进入代码块(bloc...转载 2019-04-08 18:00:01 · 728 阅读 · 0 评论 -
数学基础问题
最大公约数求法:int gcd(int a,int b){ if(b==0) return a; else reutrn gcd(b,a%b);}最小公倍数求法:a/d*b其中d为最小公倍数。素数:除一和本身外,不能被其他整数整除#include<math.h>bool isPrime(int n){ if(n<=1) r...原创 2019-04-20 19:28:03 · 208 阅读 · 0 评论 -
个人转载小百科
小小白加油鸭!不会的太多啦,这个是方便我自己看的~~~以后有不会的就写在这里啦。struct和typedef struct:https://www.cnblogs.com/qyaizs/articles/2039101.html图的深度优先搜索:基于邻接矩阵https://www.cnblogs.com/luoyang0515/p/10843932.html...转载 2019-04-20 14:28:57 · 262 阅读 · 0 评论