main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / kalai
10,15
| Is This Answer Correct ? | 1 Yes | 22 No |
Post New Answer View All Answers
Why do we use return in c?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
In a byte, what is the maximum decimal number that you can accommodate?
Explain what are its uses in c programming?
Explain what is the difference between text files and binary files?
Which function in C can be used to append a string to another string?
What is the size of structure pointer in c?
What is the default value of local and global variables in c?
What is malloc() function?
What is the difference between malloc calloc and realloc in c?
How can I use a preprocessorif expression to ?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How do c compilers work?
What is the scope of static variable in c?