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
p*=(++q)++*--p when p=q=1 while(q<=6)
How macro execution is faster than function ?
What are the different properties of variable number of arguments?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is quick sort in c?
What is cohesion in c?
What is the difference between formatted&unformatted i/o functions?
What is a volatile keyword in c?
What do the functions atoi(), itoa() and gcvt() do?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Why do we need arrays in c?
What is the use of a static variable in c?
What is && in c programming?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What are the types of arrays in c?