what is const volatile?
Answers were Sorted based on User's Feedback
Answer / test
Voliatile means value can be changed at any point .when we
say cont volatile it says value cant be changed by the
programer but can be changed by the hardware ..
for example status register of any hardware ..
its volatile since value of this register can changed at any
time and its const too since its not changed by the programmer.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / n
read-only data which should not be optimized by compiler
because it might be modified by some ways unknown by
compiler.(ex: HW, or even by other thread if we have const
volatile int *p for example, where p is the address of some
variable which is not const).
| Is This Answer Correct ? | 0 Yes | 0 No |
explain what is a newline escape sequence?
What is the difference between constant pointer and pointer to a constant. Give examples.
what is the code to display color fonts in the output?
Which is an example of a structural homology?
Is exit(status) truly equivalent to returning the same status from main?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
write a program to concatenation the string using switch case?
Can we change the value of static variable in c?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What is c programming structure?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?