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 |
write an interactive program to generate the divisors of a given integer.
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
5 Answers ABS, Accenture, HCL, Infosys, Infotech, SoftSolve, Software India, TCS, Vertex, Vimukti Technologies,
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
Explain how does flowchart help in writing a program?
I have a varargs function which accepts a float parameter?
Write a program that his output * *** *****
What is a c token and types of c tokens?
what are the advantage and disadvantage of recursion
How will you delete a node in DLL?
What is #define used for in c?
What will the preprocessor do for a program?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?