Answer Posted / ravi
userdefined
| Is This Answer Correct ? | 33 Yes | 7 No |
Post New Answer View All Answers
Write a program to find the biggest number of three numbers in c?
What is static function in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is ambagious result in C? explain with an example.
What does c mean in standard form?
What are c preprocessors?
Explain what is page thrashing?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Explain the advantages and disadvantages of macros.
What does *p++ do?
What is the difference between far and near ?
Is return a keyword in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What is volatile keyword in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply