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
Does c have enums?
What is main return c?
What is define directive?
What is the size of enum in bytes?
What is static and auto variables in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
How to implement a packet in C
Why void is used in c?
What are identifiers and keywords in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the value of h?
What is void main () in c?
How can I handle floating-point exceptions gracefully?
Process by which one bit pattern in to another by bit wise operation is?