[C语言程序设计_现代方法(第2版)] 第二章 C语言基本概念

第一个C程序: pun.c


#include <stdio.h>


int main(void)

{

printf("To C, or not to C: that is the question.\n");

return 0; //程序结束向系统返回值0

}

你可能感兴趣的:(return,C语言,程序设计,Question)