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 / fazlur rahaman naik
a will b the answer.
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
Should a function contain a return statement if it does not return a value?
Is c procedural or object oriented?
Does c have function or method?
How do you initialize pointer variables?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
write a program in c language to print your bio-data on the screen by using functions.
What is a function simple definition?
What is pass by reference in functions?
Differentiate between ordinary variable and pointer in c.
Why & is used in c?
Explain #pragma statements.
What is the size of array float a(10)?
What does c mean in standard form?
Write a program to know whether the input number is an armstrong number.
where are auto variables stored? What are the characteristics of an auto variable?