What is volatile in c language?
Answers were Sorted based on User's Feedback
Answer / venkata mahesh
compiler should not make any assumption about the variable
which declared as volatile.
| Is This Answer Correct ? | 8 Yes | 0 No |
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
What are qualifiers?
What is difference between stdio h and conio h?
What is the use of putchar function?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
write a program to generate 1st n fibonacci prime number
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
what does data structure mean?
What is the output of printf("%d", printf("Hello"));?
What do you mean by a local block?