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 / anjana jayaraj
only answer d is correct
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which function in C can be used to append a string to another string?
Is c call by value?
Explain how can a program be made to print the name of a source file where an error occurs?
What is a const pointer?
How can I recover the file name given an open stream?
How to delete a node from linked list w/o using collectons?
Is r written in c?
How many bytes is a struct in c?
How can you determine the size of an allocated portion of memory?
What is wrong with this declaration?
What is scope rule of function in c?
What is type qualifiers?
Explain how are 16- and 32-bit numbers stored?
What does c mean in standard form?
Explain is it better to bitshift a value than to multiply by 2?