Computer Science, asked by mirnal15, 7 months ago

#include<stdio.h>
inter main()
{
int x=3, y, z;
y=x=10;
z=x<10;
printf("x=%dy=%dz=%d\n", x, y, z) ;

return 0;

}​

Answers

Answered by sanskaar49
2

Answer:

You have done it wrong full syntax error

Explanation:

#include<stdio.h>

int main()

{

int x=3 , y , z;

y = x = 10;

z = x < 10;

printf(" x = %d y=%d z=%d\n", x, y, z) ;

return 0;

}

Similar questions