重新开始,做回自我,爱拼的男人最牛!
发布时间:2019-12-18 22:54:34
数组和指针是C语言编程中的一个重要部分,两者之间的应用非常灵活,结合以下代码进行进一步理解:#include int main(){ char str[20] = "blog.chinaunix.net"; char *s1=str; char *s2=str+5; char c1=str[5]; char c2=*str; char c3=*(str+5); char c4=*str+2; char c5 = (str+1)[5]; int num1 = *str.........【阅读全文】
发布时间:2019-12-17 16:16:52
例如,我们的程序针对Linux编写,不保证兼容Windows,那么可以这样做:#ifdef WIN32#error This programme cannot compile at Windows Platform#endif命令,提示用户发生了编译错误,错误信息是:这和发生语法错误的效果是一样的,程序编译失败。请看下面.........【阅读全文】
发布时间:2019-12-17 15:12:01
和### 的用法#那么: printf("%s", STR(c.biancheng.net));printf("%s", STR("c.biancheng.net"));可以发现,即使给宏参数“传递”的数据中包含引号,使用#将上面的例子补充完整:运行结果:c.biancheng.net"c.biancheng.net"称为连接符,用来将宏参数或其他的串连接起来。例如有如下的宏定义: #define CON1(a,.........【阅读全文】
发布时间:2019-12-10 10:13:35
#include <stdio.h>#include <conio.h>int main(){char ch;int i = 0;//循环监听,直到按Esc键退出while(ch = getch()){if(ch == 27){break;}else{printf("Number: %d\n", ++i);}}return 0;}conio.h 是 Win.........【阅读全文】