What are enums in c?


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

Post New Answer

More C Interview Questions

4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above

6 Answers   Accenture,


What is a program flowchart and how does it help in writing a program?

0 Answers  


Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???

2 Answers   TCS,


What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }

5 Answers   Amazon, Qualcomm,


Can you subtract pointers from each other? Why would you?

0 Answers  






How will you delete a node in DLL?

0 Answers   GrapeCity,


What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }

7 Answers  


What are the rules for the identifier?

0 Answers  


What is the difference between far and near in c?

0 Answers  


Describe the header file and its usage in c programming?

0 Answers  


What is logical error?

0 Answers  


Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?

0 Answers   Infosys,


Categories