1.

What will be the output of following program ? #include < stdio> int main() { typedef int AAA,BBB,CCC,DDD; AAA aaa=10; BBB bbb=20; CCC ccc=30; DDD ddd=40; printf("%d,%d,%d,%d",aaa,bbb,ccc,ddd); return 0; }

A. Error
B. 10,10,10,10
C. 10,20,30,40
D. AAA,BBB,CCC,DDD
Answer» D. AAA,BBB,CCC,DDD


Discussion

No Comment Found

Related MCQs