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
write a program to find the given number is prime or not
Is c dynamically typed?
What is data structure in c programming?
What is selection sort in c?
What are reserved words?
How do you list files in a directory?
Define VARIABLE?
How arrays can be passed to a user defined function
What is infinite loop?
Explain what standard functions are available to manipulate strings?
Do you know what are the properties of union in c?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is the general form of a C program?
What are the advantages of using new operator as compared to the function malloc ()?