where do we use volatile keyword?
* A variable should be declared volatile whenever its value
could change unexpectedly.
* A volatile qualifier must be used when reading the contents
of a memory location whose value can change unknown to the
current program.
* A volatile qualifier must be used for shared data modified
in signal handlers or interrupt service routines.
| Is This Answer Correct ? | 9 Yes | 0 No |
Why doesn't C support function overloading?
Describe how arrays can be passed to a user defined function
tell me the full form of c?
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
How we can insert comments in a c program?
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
what is a function prototype?
What is meant by type casting?
can we write a program in c for printf and scanf without using header file stdio.h
write a program to find the largest and second largest integer from an array
What is linear search?