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

What is main () in c language?

0 Answers  


What is the Purpose of 'extern' keyword in a function declaration?

0 Answers  


How was c created?

0 Answers  


main() { int i; printf("%d",i^i); }

1 Answers  


which is conditional construct a) if statement b) switch statement c) while/for d) goto

0 Answers  






what is the difference between while and do while?

2 Answers  


what is the structure?

4 Answers   TCS,


What is .obj file in c?

0 Answers  


please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code

0 Answers   Mind Tree,


write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?

5 Answers   HCL,


what is memory leak?

3 Answers  


6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  


Categories