Top

Discussion

What is the output of this program?

#include 
int main()
{
    enum days {MON=-1, TUE, WED=4, THU, FRI, SAT};
    printf("%d, %d, %d, %d, %d, %d", MON, TUE, WED, THU, FRI, SAT);
    return 0;
}

 

  • A.-1 0 4 5 6 7
  • B.-1 0 1 2 3 4
  • C.0 1 2 3 4 5
  • D.Error

Answer: A

No answer description available for this question

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

Post your comment