What is the use of keyword VOLATILE in C?
Answer / pawan
It prevent the (pseudo)compiler from applying any
optimizations on the code
| Is This Answer Correct ? | 2 Yes | 2 No |
What is d scanf?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
Define Array of pointers.
What is pointers in c?
What are different storage class specifiers in c?
What is the use of c language in real life?
What is the difference between pure virtual function and virtual function?
What is the concatenation operator?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Explain what are its uses in c programming?
to find the program of matrix multiplication using arrays
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }