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 the standard predefined macros?
code for quick sort?
int i=10; printf("%d %d %d", i, i=20, i);
What is use of #include in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What is a null pointer in c?
What is the equivalent code of the following statement in WHILE LOOP format?
Are the variables argc and argv are always local to main?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is type qualifiers?
How can I remove the leading spaces from a string?
What are run-time errors?
What is the function of volatile in c language?
What is the difference between the local variable and global variable in c?
Is there a way to jump out of a function or functions?