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 is double pointer in c?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Differentiate between the = symbol and == symbol?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is static memory allocation?
When should volatile modifier be used?
what do you mean by enumeration constant?
ATM machine and railway reservation class/object diagram
What is the difference between struct and union in C?
Why is c called c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is I ++ in c programming?
What should malloc(0) do?
Is register a keyword in c?
Explain about C function prototype?