What is the use of keyword VOLATILE in C?
Answer / pawan
It prevent the (pseudo)compiler from applying any
optimizations on the code
| Is This Answer Correct ? | 2 Yes | 2 No |
The variables are int sum=10,SuM=20; these are same or different?
How do you access command-line arguments?
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
Explain what are the different file extensions involved when programming in c?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
say the following declaration is correct nr not. int b=a,n=0;
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
Who is the main contributor in designing the c language after dennis ritchie?
how do you execute a c program in unix.
What does printf does?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
Why & is used in scanf in c?