标签:exercise 1-1
/*
Run the "hello, world" program on your system. Experiment with leaving out parts 
of the program to see what error messages you get.
*/
#include <stdio.h>
main()
{
    printf("hello world\n");
}
    
        版权声明:本文为博主原创文章,未经博主允许不得转载。
C - The C Answer (2nd Edition) - Exercise 1-1
标签:exercise 1-1
原文地址:http://blog.csdn.net/troubleshooter/article/details/46843343