Answer Posted / agung bakhtiar
A volatile variable is the one whose values may be changed at any time by some external sources
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Write a code to generate divisors of an integer?
How to throw some light on the b tree?
What is pre-emptive data structure and explain it with example?
Difference between goto, long jmp() and setjmp()?
How do you list files in a directory?
What is the difference between the expression “++a” and “a++”?
What is a null pointer in c?
number of times a digit is present in a number
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
If you know then define #pragma?
What are c header files?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is the use of ?