#include <stdio.h>//预处理
int main()
{
printf("******************************\n");//输出******************************
printf("This is my first c program.\n");//输出This is my first c program.
printf("******************************\n");//输出******************************
getchar();//暂停当前程序
return 0;
}