main() {
int x=2, y=4
if ((x==2||y==4)
x++
y++
if (y==4+1)
{
x=x+y;
}
y++;
printf("The values of x and y are %d and %d."x,y);
}
What is the output?
Answer Posted / pandu
x=8,y=6
| Is This Answer Correct ? | 20 Yes | 3 No |
Post New Answer View All Answers
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Explain bit masking in c?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Explain what is the difference between a free-standing and a hosted environment?
Explain what happens if you free a pointer twice?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
How can I write a function analogous to scanf?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is a double c?
Where can I get an ansi-compatible lint?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What are multidimensional arrays?
What are qualifiers in c?
Can we change the value of #define in c?
How do I copy files?