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));
Post New Answer View All Answers
Explain how do you convert strings to numbers in c?
What is %d called in c?
can any one provide me the notes of data structure for ignou cs-62 paper
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
What is sizeof array in c?
What is the use of a semicolon (;) at the end of every program statement?
Define recursion in c.
What is the difference between memcpy and memmove?
Can we declare a function inside a function in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
I heard that you have to include stdio.h before calling printf. Why?
Is a pointer a kind of array?
List out few of the applications that make use of Multilinked Structures?
any "C" function by default returns an a) int value b) float value c) char value d) a & b