Explain what is the benefit of using enum to declare a constant?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is the difference between class and unio?

0 Answers   HCL, Wipro,


main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }

4 Answers   Vector, Wipro, Zoho,


how to write hello word without using semicolon at the end?

6 Answers   Accenture,


What is the purpose of Scanf Print, getchar, putchar, function?

3 Answers  


#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain &#1567;&#1567;&#1567;

4 Answers  






An array name contains base address of the array. Can we change the base address of the array?

4 Answers   NMIMS, Wipro,


When is a “switch” statement preferable over an “if” statement?

0 Answers  


How many keywords are there in c?

0 Answers  


What are pragmas and what are they good for?

0 Answers  


How do I get a null pointer in my programs?

0 Answers  


What does main () mean in c?

0 Answers  


Will Macros support multiple arguments ?

7 Answers   Oracle,


Categories