Answer Posted / avinash
HEADER IS INCLUDE <STDIO.H>.
| Is This Answer Correct ? | 12 Yes | 22 No |
Post New Answer View All Answers
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
For what purpose null pointer used?
Is sizeof a keyword in c?
What is scope and lifetime of a variable in c?
Does sprintf put null character?
Why do we need arrays in c?
What is a struct c#?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain what is meant by 'bit masking'?
Why is extern used in c?
How are portions of a program disabled in demo versions?
What does do in c?
What is const volatile variable in c?
What are control structures? What are the different types?
What is difference between structure and union?