0
If there are three diff or same inputs in a c program...
The output should be 1 if all three inputs are different and output should be 0 if any one input is repeated...
1 ответ
0
if(a!=b && b!=c && a!=c)
{
printf("1");
}
else
{
printf("0"):
}
The output should be 1 if all three inputs are different and output should be 0 if any one input is repeated...