无,变量在程序中以赋值的方式给定初值。
sum=结果
#include <stdio.h> int main(){ int a=123,b=456,sum; printf("sum=%d",a+b); return 0; }