#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?
}
Answer Posted / sshireesha
12 6 11
| Is This Answer Correct ? | 30 Yes | 9 No |
Post New Answer View All Answers
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
what do you mean by inline function in C?
Why void main is used in c?
What tq means in chat?
What is %d called in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Which are low level languages?
Can variables be declared anywhere in c?
write a program to print largest number of each row of a 2D array
What are control structures? What are the different types?
What are register variables in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
writ a program to compare using strcmp VIVA and viva with its output.
How do you define a string?
How can a number be converted to a string?