What are volatile variables?
Answer / manoj
Volatile variable will be used when we are dealing with
external memory, external device and interrupt service
routine. In these situation if some variable needs update
or gets update without user knowledge in that case variable
should be declared as VOLATILE. otherwise we may loose
these update.
| Is This Answer Correct ? | 8 Yes | 1 No |
write a c program to find largest of three numbers using simple if only for one time.
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is volatile variable how do you declare it?
What are terms in math?
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
What is time null in c?
What is typeof in c?
What is meant by int main ()?
difference between ordinary variable and pointer in C?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
what is the difference between c and c++?
Is there a way to switch on strings?