Hello CSDN!

Hello CSDN!

每一个小白应该都是从hello Word!开始进入程序猿的世界吧

这是我的第一篇博客也从hello Word!开始吧!

直接输出

简单粗暴

#include
#define N 100
int main()
{
printf(“hello world!\n”);
return 0;
}

hello world!

使用gets()输入

#include
#define N 100
int main()
{
char s[N];
printf(“Input words: “);
gets(s);//输入字符
printf(”%s\n”,s);
return 0;
}

Input words: hello world!
hello world!

使用scanf()

#include
#define N 100
int main()
{
char s[N];
printf(“Input words: “);
scanf(”%s”,s);//输入字符,但是不可以有空格
printf("%s\n",s);
return 0;
}

scanf("%s",s); ——这里的 s 已是地址。
写成 scanf("%s",&s[0] ); 也可以, &s[0] 是地址。

Input words: hello-world!
hello-world!

共同学习,共同进步

你可能感兴趣的:(Hello CSDN!)