main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / madhu
hey how come 15 ....
ans is 11,16
| Is This Answer Correct ? | 5 Yes | 7 No |
Post New Answer View All Answers
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
How do you define CONSTANT in C?
What is line in c preprocessor?
How can I use a preprocessorif expression to ?
In C language, a variable name cannot contain?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Why do we need functions in c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
Is it possible to pass an entire structure to functions?
Explain the priority queues?
Under what circumstances does a name clash occur?
What is the value of uninitialized variable in c?
What is the purpose of type declarations?