Is the below things valid & where it will be stored in
memory layout ?
static const volatile int i;
register struct { } ;
static register;

Answers were Sorted based on User's Feedback



Is the below things valid & where it will be stored in memory layout ? static const volatile i..

Answer / 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

Is the below things valid & where it will be stored in memory layout ? static const volatile i..

Answer / suyash(nit c.s. eng)

u may mix const to variable it is not correct

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Interview Questions

in iso what are the common technological language?

0 Answers  


WHAT IS PRE POSSESSORS?

6 Answers   TATA,


Is there any demerits of using pointer?

0 Answers  


When should we use pointers in a c program?

0 Answers  


What are the disadvantages of a shell structure?

0 Answers  






What is static and volatile in c?

0 Answers  


What is the equivalent code of the following statement in WHILE LOOP format?

0 Answers  


What is the difference between arrays and pointers?

0 Answers  


What is build process in c?

0 Answers  


What is the use of structure padding in c?

0 Answers  


how to set Nth bit of a variable?

1 Answers  


dynamically allocate memory for linear array of n integers,store some elements in it and find some of them

1 Answers  


Categories