what is volatile in c language?
Answer Posted / bhagyaraj m c
Both 1 and 2 comments are correct.
Just simplifying this
"Recompute\Refresh every time when ever the volatile is
found."
| Is This Answer Correct ? | 19 Yes | 7 No |
Post New Answer View All Answers
Why is c so powerful?
When should you use a type cast?
Why do we use header files in c?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are the data types present in c?
Explain how can you avoid including a header more than once?
Is file a keyword in c?
Can you mix old-style and new-style function syntax?
What is a stream?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How do I get a null pointer in my programs?
What extern c means?
Define VARIABLE?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Write a C program in Fibonacci series.