第一章 程序设计和C语言

例1.1 要求在屏幕上输入以下一行信息

#include <stdio.h>
int main ()
{
printf("This is a C program.\n");
return 0;
}

运行结果如下:

第一章 程序设计和C语言

相关文章: