#include <stdio.h> int main(void) { int a,b,c,d; a = 3; b = 4; c = a,b; d = (a,b); printf("c = %d/n",c); printf("d = %d/n",d); return 0; } 以上输出是多少?