Answer Posted / n
read-only data which should not be optimized by compiler
because it might be modified by some ways unknown by
compiler.(ex: HW, or even by other thread if we have const
volatile int *p for example, where p is the address of some
variable which is not const).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is 2c dna?
What is volatile c?
What is hungarian notation? Is it worthwhile?
what will be the output for the following main() { printf("hi" "hello"); }
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Write a simple code fragment that will check if a number is positive or negative.
Write a program to generate the Fibinocci Series
How can I trap or ignore keyboard interrupts like control-c?
How can I read data from data files with particular formats?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What are the benefits of c language?
What is difference between union and structure in c?
What is null pointer in c?
What are the 4 types of functions?