where do we use volatile keyword?
Answer / 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 |
What Is The Difference Between Null And Void Pointer?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
How is actual parameter different from the formal parameter?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
What’s a signal? Explain what do I use signals for?
differentiate built-in functions and user – defined functions.
which is an algorithm for sorting in a growing Lexicographic order
how can i calculate mean,median,mode by using c program
What are the advantages of union?
who is the father of C Language?
20 Answers CTS, UST,
can any one provide me the notes of data structure for ignou cs-62 paper
In a switch statement, explain what will happen if a break statement is omitted?