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 / priyanka nigam
return(sqr(a)); is the ans
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What are lookup tables in c?
If errno contains a nonzero number, is there an error?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What does the format %10.2 mean when included in a printf statement?
Is that possible to store 32768 in an int data type variable?
What is the difference between struct and union in C?
How can I send mail from within a c program?
What is integer constants?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Is there a way to switch on strings?
What does p mean in physics?
What are the applications of c language?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Who invented b language?
What is #define size in c?