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 is #line in c?
How can I remove the trailing spaces from a string?
What is page thrashing?
What is scope of variable in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is a program flowchart?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Is array name a pointer?
Can the curly brackets { } be used to enclose a single line of code?
What is an lvalue?
What is the full form of getch?
What is this pointer in c plus plus?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above