Find MAXIMUM of three distinct integers using a single C statement
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of the statement: strcat (S2, S1)?
What will be your course of action for a push operation?
Explain the ternary tree?
What are the loops in c?
What are the different types of endless loops?
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
Why c language is called c?
What is an anonymous union and where to apply that ?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
How are pointers declared in c?