Answer Posted / sandeep
By adding volatile qualifier
eg:volatile int a;
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is this pointer in c plus plus?
What is the size of empty structure in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
How do I use strcmp?
What is page thrashing?
Explain what header files do I need in order to define the standard library functions I use?
Why we not create function inside function.
Explain how do you convert strings to numbers in c?
Why do we need a structure?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How is a pointer variable declared?
What is #define in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How main function is called in c?
What is a sequential access file?