#include<stdio.h>
void main(void)
{
int x = 120;
int y =50;
char z [20] ;
z=(x>y)? "statment 1":"statment 2";
printf("Z = %c",z);
}
Mathbot Says...
I wasn't able to parse your question, but the HE.NET team is hard at work making me smarter.
#include<stdio.h>
void main(void)
{
int x = 120;
int y =50;
char z [20] ;
z=(x>y)? "statment 1":"statment 2";
printf("Z = %c",z);
}
I wasn't able to parse your question, but the HE.NET team is hard at work making me smarter.