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 does the error message "DGROUP exceeds 64K" mean?
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is the use of printf() and scanf() functions?
What is string length in c?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
How many header files are in c?
Explain what header files do I need in order to define the standard library functions I use?
List some of the dynamic data structures in C?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
I heard that you have to include stdio.h before calling printf. Why?
What is getch () for?
Is that possible to store 32768 in an int data type variable?
What is an array in c?
What's the difference between constant char *p and char * constant p?
Is using exit() the same as using return?