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

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

return(1);
}

Answer Posted / paresh

0,1,2

Is This Answer Correct ?    10 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to print “hello world” without using semicolon?

678


If I have a char * variable pointing to the name of a function ..

662


What is ponter?

777


What is atoi and atof in c?

620


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

681






Explain the use of 'auto' keyword in c programming?

685


Can you please explain the difference between strcpy() and memcpy() function?

606


the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above

726


What is the difference between c and python?

588


Differentiate between #include<...> and #include '...'

621


What are file streams?

574


What is a function simple definition?

625


How many types of errors are there in c language? Explain

577


What are c header files?

586


The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference

678