你的a,b,c,没有初始化。#include <stdio.h>#include <stdlib.h>
int main(){ int a = 3,b = 4,c = 5; printf("\n"); printf("a=%2d b=%2d c=%2d\n",a,b,c); return 0;}
如果main()前面没有加 void,一定要在程序中写 return 0;吗?意思是不是告诉计算机main()返回值0,什么也不做啊?