what is a non volatile key word in c language?
Answer / vishnu
There is no non volatile key word in C.
we have volatile const
we have const
we have volatile key words.
| Is This Answer Correct ? | 4 Yes | 0 No |
Is the following code legal? struct a { int x; struct a b; }
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
How can I increase the allowable number of simultaneously open files?
What is pre-emptive data structure and explain it with example?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
what is the maximum no. of bytes calloc can allocate
from which concept of 'c', the static member function of 'c++' has came?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
how to find binary of number?
What is a rvalue?