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
What are file streams?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Is c still used?
What are the key features in c programming language?
Are enumerations really portable?
What is switch in c?
Is c programming hard?
Which header file is essential for using strcmp function?
Explain two-dimensional array.
Why do we use namespace feature?
What is volatile variable how do you declare it?
What is the value of h?
Describe how arrays can be passed to a user defined function
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3