Examveda
Examveda

What will be the output of the following C code?
#include<stdio.h>
enum shyam
{
    a=2,b=3.56
};
enum shyam s;
main()
{
    printf("%d%d",a,b);
}

A. 2 3

B. 0 1

C. 2 3.56

D. Error

Answer: Option D


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals