how many key words availabel in c
a) 28
b) 31
c) 32
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of bit fieild.
How do you initialize function pointers? Give an example?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Can you please compare array with pointer?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
what is difference between c and c++
What is the difference between GETS();AND SCANF();
How can I increase the allowable number of simultaneously open files?
difference between c and c++
The file stdio.h, what does it contain?
How can I call a function, given its name as a string?
What is the mean of this statement:: if(int i=0 * i=9)