C语言hellowworld程序

来源:互联网 发布:心知天气中文 编辑:程序博客网 时间:2024/05/22 07:06

c语言helloworld
#include <stdio.h>


int main(int argc, char *argv[])
{
char sz[] = "Hello, World!\n";/* Hover mouse over "sz" while debugging to see its contents */
printf("%s", sz);
fflush(stdout); /* <============== Put a breakpoint here */
return 0;
}

原创粉丝点击