how many keywords are available in 'c' language

a) 32

b) 34

c) 45

d) 48



how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48..

Answer / riya

32

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Can anyone tell what is stack overflow? what precaution we should take?

1 Answers  


What is the use of c language in real life?

0 Answers  


34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?

0 Answers  


WHAT IS HIGH LEVEL LANGUAGE?

2 Answers  


const char * char * const What is the differnce between the above tow?.

6 Answers   Ramco, TCS,






Write programs for String Reversal & Palindrome check

0 Answers   TISL,


Difference between for loop and while loop?

1 Answers  


code for inverse a matrix

0 Answers  


What are the application of c?

0 Answers  


Do you know the difference between malloc() and calloc() function?

0 Answers  


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

0 Answers  


6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


Categories