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 / ganesh bankar
There is a errsor at compile time because some statements
are not terminated by ";".
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are identifiers c?
What is the difference between fread and fwrite function?
What header files do I need in order to define the standard library functions I use?
Why do we use stdio h and conio h?
What does c mean in basketball?
What are extern variables in c?
Where static variables are stored in memory in c?
What is the basic structure of c?
How can I dynamically allocate arrays?
What are dangling pointers in c?
Explain can static variables be declared in a header file?
Explain what are the different file extensions involved when programming in c?
can we implement multi-threads in c.
can we change the default calling convention in c if yes than how.........?
What is void pointers in c?