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 / saranya
both a and d is possible
a: which returns the value of sqr(a)
d:it prints the value of the sqr(a)
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is operator precedence?
What are the advantages of using new operator as compared to the function malloc ()?
what is the difference between 123 and 0123 in c?
Explain what are multibyte characters?
What are the back slash character constants or escape sequence charactersavailable in c?
What is pointer to pointer in c with example?
Does c have function or method?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
find out largest elemant of diagonalmatrix
Is c compiled or interpreted?
Explain bitwise shift operators?
If the size of int data type is two bytes, what is the range of signed int data type?
Write a program to print "hello world" without using a semicolon?
How can you restore a redirected standard stream?
What is pragma c?