What is the use of ?: Operator?
No Answer is Posted For this Question
Be the First to Post Answer
What does %2f mean in c?
What is a sequential access file?
Explain union. What are its advantages?
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
how write a addtion of two single dimensional array using of pointer in c language?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
what are enumerations in C
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Write a function in c to find the area of a triangle whose length of three sides is given.
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.