Menu

Include Int Main Int X 6 Y 9 Printf X D Y D N X Y X 0 Y 0 Printf X Y Positive N X 0 Y 0 Pr Q43819806

#include<stdio.h> int main() int x=6,y=9; printf(x=%d,y=%dn,x,y); if(x>0 && y>0) printf(x and y are both positive.n”); i#include<stdio.h> int main() int x=6,y=9; printf(“x=%d,y=%dn”,x,y); if(x>0 && y>0) printf(“x and y are both positive.n”); if(x==0 || y>0) printf(“x equals to zero or y is greater than On”); if(!(x==y)) printf(“x is not equal to y. n”); printf(“over.n”); return 0; Show transcribed image text #include int main() int x=6,y=9; printf(“x=%d,y=%dn”,x,y); if(x>0 && y>0) printf(“x and y are both positive.n”); if(x==0 || y>0) printf(“x equals to zero or y is greater than On”); if(!(x==y)) printf(“x is not equal to y. n”); printf(“over.n”); return 0;

Expert Answer


Answer to #include int main() int x=6,y=9; printf(“x=%d,y=%dn”,x,y); if(x>0 && y>0) printf(“x and y are both positive.n”); if(…

OR