人間夜行

一切の有為の法 夢幻泡影の如し

K&R C Bible Exercises 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.

Example:

#include <stdio.h>
int main()
{
	printf("Hello, World!\n");
	return 0;
}
 

评论