Answer Posted / achal ubbott
the keyword volatile is more used in embedded systems
programming, especially when we are dealing with the
special function registers of a microcontroller. e.g.
status register of UART or some other peripheral devices.
As you may know that volatile asks the compiler not to
subject the variable in question to optimization.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What are the types of pointers?
Write a simple code fragment that will check if a number is positive or negative.
What is exit() function?
Is main an identifier in c?
Write a program for finding factorial of a number.
How can you find the day of the week given the date?
Are pointers integer?
How can you call a function, given its name as a string?
What are actual arguments?
Is javascript based on c?
Define macros.
How can I handle floating-point exceptions gracefully?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Are the outer parentheses in return statements really optional?
What is function pointer c?