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
What are types of functions?
How can I determine whether a machines byte order is big-endian or little-endian?
What is the concatenation operator?
Explain the properties of union.
What is volatile variable how do you declare it?
What is a newline escape sequence?
Which is better pointer or array?
can anyone please tell about the nested interrupts?
Ow can I insert or delete a line (or record) in the middle of a file?
Is c high or low level?
what is the format specifier for printing a pointer value?
What is the right way to use errno?
Explain enumerated types in c language?
What does typeof return in c?
Explain data types & how many data types supported by c?