Top

Discussion

What will be the output of the following C code?

#include
#define hello 10
void main()
{
    printf("%d",hello);
    #undef hello
    printf("%d",hello);
}

 

  • A.10
  • B.hello
  • C.error
  • D.1010

Answer: C

No answer description available for this question.

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

Post your comment