#define MAX(x,y) (x) >(y)?(x):(y)
main()
{
inti=10,j=5,k=0;
k= MAX(i++,++j);
printf("%d..%d..%d",i,j,k);
}
No Answer is Posted For this Question
Be the First to Post Answer
write a program to create a sparse matrix using dynamic memory allocation.
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
What is the Purpose of 'extern' keyword in a function declaration?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
How can I copy just a portion of a string?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
What is meant by recursion?
Can you think of a logic behind the game minesweeper.
What is p in text message?
void main() { int i=5; printf("%d",i++ + ++i); }