what is volatile in c language?
Answer Posted / lingaraj a
The programmer just give inform to compiler the value of
variable will change at any time without any action being by
program. The change will be made by hardware or external source.
| Is This Answer Correct ? | 6 Yes | 5 No |
Post New Answer View All Answers
What are the types of pointers in c?
What extern c means?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is the return type of sizeof?
Explain spaghetti programming?
What is wrong with this initialization?
What are c header files?
What is the purpose of ftell?
Why void main is used in c?
What is c definition?
What is a class c rental property?
What is a example of a variable?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
what do u mean by Direct access files? then can u explain about Direct Access Files?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }