具体 *** 作如下:
1、找到终端;
2、打开终端,输入 cd /Users/mac/desktop/c 到指定目录文件夹下;
3、输入 vim hello.c,用vim编辑hello.c文件;
4、按i进入编辑状态,输入要程序的代码;
5、按ESC键退出编辑状态,输入:后输入wq(保存并退出);
6、gcc hello.c对文件进行编译,输入./a.out hello.c执行编译后的文件。
拓展资料:
C语言是一门通用计算机编程语言,广泛应用于底层开发。C语言的设计目标是提供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言。
尽管C语言提供了许多低级处理的功能,但仍然保持着良好跨平台的特性,以一个标准规格写出的C语言程序可在许多电脑平台上进行编译,甚至包含一些嵌入式处理器(单片机或称MCU)以及超级电脑等作业平台。
#include"stdio.h"
intmain()
{
inti=0,j,num=0
chars[10]
while(s[i-1]!='#')
{
scanf("%c",&s[i])
i++
}
for(j=0j<ij++)
if(s[j]>='A'&&s[j]<='Z')
num++
printf("%d\n",num)
return0
}
扩展资料
利用while语句,条件为输入的字符不为'\n'进行统计字母
#include<stdio.h>
intmain()
{
charc
intletters=0,spaces=0,digits=0,others=0
printf("请输入一些字母:\n")
while((c=getchar())!='\n')
{
if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))
letters++
elseif(c>='0'&&c<='9')
digits++
elseif(c=='')
spaces++
else
others++
}
printf("字母=%d,数字=%d,空格=%d,其他=%d\n",letters,digits,spaces,others)
return0
}
#include <stdio.h>#include <stdlib.h>
int main() {
char* filename = "D:\\list.txt"
FILE *fp
if((fp=fopen(filename, "r"))==NULL) {
exit(1)
}
char c
while((c=fgetc(fp)) != EOF) {
putchar(c)
}
fclose(fp)
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)