Write one statement equalent to the following two statements
x=sqr(a);
return(x);
Choose from one of the alternatives
a.return(sqr(a));
b.printf("sqr(a)");
c.return(a*a*a);
d.printf("%d",sqr(a));
Answer Posted / fazlur rahaman naik
a will b the answer.
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is fflush() function?
How do I swap bytes?
how is the examination pattern?
What are extern variables in c?
Why malloc is faster than calloc?
What is chain pointer in c?
Explain the difference between null pointer and void pointer.
Can a local variable be volatile in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
The statement, int(*x[]) () what does in indicate?
Explain what is the stack?
What does dm mean sexually?
What is the correct declaration of main?
Where static variables are stored in memory in c?