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 / niranjan kumar niraj
d)none of the above
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
#include
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is extern c used for?
how to find binary of number?
Describe the difference between = and == symbols in c programming?
What is LINKED LIST? How can you access the last element in a linked list?
Is fortran faster than c?
Can we change the value of constant variable in c?
Is c language still used?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is the use of structure padding in c?
What is selection sort in c?
What is a floating point in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Can you return null in c?