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 |
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
Dear Sir, we are required the bubble sorting programs Regs Prem
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
Write a code to remove duplicates in a string.
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Explain the difference between call by value and call by reference in c language?
char ch=10;printf("%d",ch);what is the output
write a Program to dispaly upto 100 prime numbers(without using Arrays,Pointer)
26 Answers ADITI, iFlex, Infosys, Oracle, TCS, Unicops, Wipro,
How can I insert or delete a line (or record) in the middle of a file?
What is the memory allocated by the following definition ? int (*x)();