-
sudo apt-get install vim查看全部
-
#include <stdio.h> /* stdin stdout stderr */ int main() { //printf("please input the value a : \n"); fprintf(stdout, "please input the value a : \n"); int a; //scanf("%d", &a); fscanf(stdin, "%d", &a); if (a < 0) { fprintf(stderr, "the value must > 0\n"); return 1; } return 0; }查看全部
-
#include <stdio.h> int main(int argv,char* argc[]) { printf("argv is %d \n", argv); int i; for (i=0;i<argv;i++) { printf("argc[%d] is %s\n", i, argc[i]); } return 0; }查看全部
-
#this is make file hello.out:max.o min.o hello.c gcc max.o min.o hello.c -o hello.out max.o:max.c gcc -c max.c min.o:min.c gcc -c min.c查看全部
-
1.printf("xxxooo") 是对 fprintf(stdout,"xxxooo")的封装; 2.scanf("%d",&a) 是对 fscanf(stdin,"%d",&a)的封装;查看全部
-
如果文件比较多的话,只有先把文件编译成*.o再执行才能提高效率,但是编译过后的*.o文件不能查看,则需要创建*.h文件,*.h文件里面放方法名以及参数类型。.c 编译单个(不是main函数的文件)*.c文件则用命令gcc -c *.c 编译是main函数的文件则用gcc *.c查看全部
-
rm删除文件 touch新建文件 shift+i行首插入I shift+a行尾插入A i光标前插入 a光标后插入 o下一行插入 shift+o当前行上一行插入 dd删除一整行 x删除一个字符查看全部
-
sudo管理员权限apt-get install vim clear清屏 cd~进入家目录 pwd当前所在目录 ls当前目录下文件与目录查看全部
-
ANSI C 因为初期C语言语法各大厂商的差异而制定的C语言标准。 特点: 简单、快速、高性能、兼容性好、功能强大、易于学习查看全部
-
C,一种通用的、过程式的编程语言,广泛用于系统与应用软件的开发。查看全部
-
#include <stdio.h> int main() { printf("hello world!\n"); }查看全部
-
重点内容查看全部
-
linux下常用的文本编辑器查看全部
-
echo $? 判断该程序是否正确查看全部
-
return 返回函数是可以标志程序是否正确,返回0则正确,其他数值则表示错位查看全部
举报
0/150
提交
取消