what is volatile in c language?
Answer Posted / hareesha chikkapattanager parv
It is nothing but telling to compiler that this variable
will change its value at anytime by hard or outside the
controll of the program and compiler should not make any
assumption or optimize about this variable.
| Is This Answer Correct ? | 46 Yes | 5 No |
Post New Answer View All Answers
Can the “if” function be used in comparing strings?
Is c still used?
int far *near * p; means
What will be your course of action for a push operation?
What is the use of typedef in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
main() { printf("hello"); fork(); }
How we can insert comments in a c program?
Why is sprintf unsafe?
Explain how do you generate random numbers in c?
What is the use of #include in c?
Is it better to use malloc() or calloc()?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Are the variables argc and argv are local to main?
What are two dimensional arrays alternatively called as?