How many keywords (reserve words) are in c?


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

Post New Answer

More C Interview Questions

When should you use a type cast?

0 Answers  


What is #line?

0 Answers  


What is %d used for?

0 Answers  


What is the general form of a C program?

0 Answers  


What is the advantage of an array over individual variables?

0 Answers  






What should malloc(0) do?

0 Answers  


What is the most efficient way to count the number of bits which are set in a value?

4 Answers  


Is printf a keyword?

0 Answers  


What is a symbolic constant?

1 Answers  


What language is windows 1.0 written?

0 Answers  


What is the purpose of void in c?

0 Answers  


#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?

7 Answers   Intel,


Categories