Top

Discussion

What will be the output of the following C code?

#include
enum sanfoundry
{
    a=2,b=3.56
};
enum sanfoundry s;
main()
{
    printf("%d%d",a,b);
}

 

  • A.2 3
  • B.0 1
  • C.2 3.56
  • D.Error

Answer: D

No answer description available for this question

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

Post your comment