What will be output of the following “c” code?


Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include

enum color{BLACK, BLUR, GREEN};

void main()

{

printf("%d %d %d", BLACK, BLUR, GREEN);

}

A. 36527
B. 0 0 0
C. Garbage Value
D. 36526