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 / pradeep kumar.s
My Option Is d
since the printf statement is capable of having two
functionalities
1, display the message in output screen
2, calls the function and return the answer here.
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is c variable?
What are integer variable, floating-point variable and character variable?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Is sizeof a keyword in c?
Who is the founder of c language?
Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014 Npu university
What is a static function in c?
Explain the array representation of a binary tree in C.
Is null always equal to 0(zero)?
What are linker error?
Explain Basic concepts of C language?
What is void c?
Why is it that not all header files are declared in every C program?
What would be an example of a structure analogous to structure c?
How can I discover how many arguments a function was actually called with?