打印输出两个整型变量的值,两个变量的值分别为8和18
#include <stdio.h> int main() { int a = 8,b = 18; printf("a=%d,b=%d\n",a,b); return 0; }