enum colors {BLACK,BLUE,GREEN}
main()
{

printf("%d..%d..%d",BLACK,BLUE,GREEN);

return(1);
}

Answer Posted / kripal singh thakur

0..1..2

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the differences between Structures and Arrays?

614


How can a number be converted to a string?

611


What is atoi and atof in c?

620


What is the use of volatile?

614


What is c programming structure?

625






What is the right way to use errno?

625


What is the difference between text and binary i/o?

596


Do you know null pointer?

616


What functions are used for dynamic memory allocation in c language?

604


Explain the priority queues?

629


Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"

1585


Explain built-in function?

598


How can I write a function that takes a format string and a variable number of arguments?

609


How can I remove the leading spaces from a string?

638


Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

1598