#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include <time.h> int main(void) { int a = 10; int b = 20; // ,:将逗号后面的值赋值给变量c int c = (a, b+20); printf("%d\n", c); return 0; }
C语言 杂货整理
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include <time.h> int main(void) { int a = 10; int b = 20; // ,:将逗号后面的值赋值给变量c int c = (a, b+20); printf("%d\n", c); return 0; }
C语言 杂货整理
简述初识c语言的心得
1、C语言中,非零值为真,真用1表示;零值为假,假用0表示。2、转义字符参考:\a蜂鸣
目录和输入输出相关的转义序列printf()转换说明符 printf()修饰符
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M