main()
{
enum{red,green,blue=6,white};
pf("%d%d%d%d", red,green,blue,white);
return 0;
}

a)0 1 6 2
b)0 1 6 7
c)Compilation error
d)None of the above

Answer Posted / saiteja

0167

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?

572


Can we change the value of #define in c?

582


Can you assign a different address to an array tag?

694


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

760


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1196






What is c variable?

548


What is getch() function?

643


What are header files and explain what are its uses in c programming?

605


What are the different types of linkage exist in c?

609


Multiply an Integer Number by 2 Without Using Multiplication Operator

315


What is meant by type specifiers?

656


How can I trap or ignore keyboard interrupts like control-c?

613


What type of function is main ()?

581


How do you define a function?

579


Why cant I open a file by its explicit path?

593