/*C語言 函數puts()、gets()的使用*/
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
char name[20];
puts("what your name?");
gets(name);
puts("my name is");
puts(name);
//puts()會自動換行,在某些時間不適合使用,
//所以使用率較低。
system("pause");
return 0;
}
結果為:
文章標籤
全站熱搜
留言列表