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 / rajesh
Error will be occur because the variable declaration
does`t intilized terminate symbol(;), and again same
mistake in line 5 and line 6.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
How can I direct output to the printer?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is the right type to use for boolean values in c?
How reliable are floating-point comparisons?
Why is c not oop?
What is memcpy() function?
What are header files in c programming?
Explain what does the format %10.2 mean when included in a printf statement?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
If I have a char * variable pointing to the name of a function ..
What is quick sort in c?
Can we access the array using a pointer in c language?
Explain About fork()?