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
Explain how can I read and write comma-delimited text?
What is meant by type casting?
What is self-referential structure in c programming?
What are the loops in c?
about c language
What is console in c language?
in linking some of os executables are linking name some of them
Is it fine to write void main () or main () in c?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is page thrashing?
Explain how do you override a defined macro?
What is a null pointer in c?
Do pointers need to be initialized?
How can I list all of the predefined identifiers?
Explain 'bit masking'?