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
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 |
Answer / suyash(nit c.s. eng)
u may mix const to variable it is not correct
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain what are multidimensional arrays?
Which is better malloc or calloc?
What is the significance of c program algorithms?
What is the difference b/w Structure & Class?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
What is sparse file?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
Explain how do you declare an array that will hold more than 64kb of data?
What is string in c language?
What is the use of putchar function?