star

搜索

RSS

RSS Link

计数器

133808

Hello, World!

2010年7月31日 05:52 | Comments(4) | Category:C语言 | Tags:

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
	printf("Hello, World!\n");
	return EXIT_SUCCESS;
}