what is the difference between const volatile int i
& volatile const int j;
Answer Posted / raj
There is no difference between const volatile int i and
volatile const int j
| Is This Answer Correct ? | 13 Yes | 10 No |
Post New Answer View All Answers
What is typeof in c?
What is a pointer variable in c language?
What is the purpose of realloc()?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How can I find the modification date of a file?
What is the total generic pointer type?
When should the register modifier be used? Does it really help?
How can I change the size of the dynamically allocated array?
Explain the use of #pragma exit?
There seem to be a few missing operators ..
Are the outer parentheses in return statements really optional?
What is the scope of global variable in c?
Sir i need notes for structure,functions,pointers in c language can you help me please
How many levels deep can include files be nested?
What is #include cctype?