Top

Discussion

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: C

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment