Is the below things valid & where it will be stored in
memory layout ?
static const volatile int i;
register struct { } ;
static register;
Answer Posted / sugu
no it is invalid . because volatile means ever changing, but
const means the value wont be changed.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
why wipro wase
Explain threaded binary trees?
Is it possible to initialize a variable at the time it was declared?
Explain the priority queues?
Describe the modifier in c?
What is time null in c?
How many levels of pointers have?
Explain continue keyword in c
Can a local variable be volatile in c?
What are header files? What are their uses?
How many bytes is a struct in c?
Why double pointer is used in c?
c program for searching a student details among 10 student details
Is it better to use a macro or a function?
Why we not create function inside function.