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
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
How do you redirect a standard stream?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Define VARIABLE?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Explain the difference between call by value and call by reference in c language?
What is memory leak in c?
What is the return type of sizeof?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
in iso what are the common technological language?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
How can I list all of the predefined identifiers?
What are different storage class specifiers in c?
Is file a keyword in c?
How can I make sure that my program is the only one accessing a file?