文章目录

1 题目

问题 A: 例题1-1-1 按要求输出信息(1)
[命题人 : 外部导入]
时间限制 : 1.000 sec 内存限制 : 12 MB

题目描述
编写一个C程序,要求在屏幕上输出一下一行信息。

This is my first c program!

输入

输出
This is my first c program!
样例输入

样例输出
This is my first c program!

2 解析

printf输出字符串,语句用""扩起来。

3 参考代码

#include 

int main(){
printf("This is my first c program!\n");
return 0;
}