how many keywords are available in 'c' language
a) 32
b) 34
c) 45
d) 48
Explain what will the preprocessor do for a program?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What does extern mean in a function declaration?
Explain following declaration int *P(void); and int (*p)(char *a);
Please list all the unary and binary operators in C.
pgm to find middle element of linklist(in efficent manner)
What is cohesion in c?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What are the advantages of Macro over function?
What are dangling pointers in c?