-
Get Instant Solutions to C Programming Problems
over 7 years ago
-
over 6 years ago
- void main()
{
int x=10,y=5,p,q;
p=x>9;
q=x>3 && y!=3;
printf("p=%d q=%d",p,q);
}
-
over 7 years ago
over 6 years ago
{
int x=10,y=5,p,q;
p=x>9;
q=x>3 && y!=3;
printf("p=%d q=%d",p,q);
}
1 Comment(s)