//打印helloworld//标准的输入输出#include<stdio.h>intmain(intargc,constchar*argv[]){//printf函数printf("helloworld!\n");return0;}