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
What is structure padding in c?
What is return type in c?
How can you find the exact size of a data type in c?
Write a program to show the change in position of a cursor using c
Explain what is the most efficient way to store flag values?
Are pointers really faster than arrays?
what is recursion in C
Explain what does a function declared as pascal do differently?
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?
how is the examination pattern?
What is a char in c?
What is meant by recursion?
What is the mean of function?
Explain the meaning of keyword 'extern' in a function declaration.
Explain the properties of union.