#include<stdio. h>
#include<ctype. h>
int na
{
if(a<b && a<c)
printf("%d ",a);
else if(c<b)
printf("%d ",c);
else
printf("%d ",b);
}
[Error] expected primary-expression before 'if'
WHY IT GIVES ME THIS ERROR
#include<ctype. h>
int na
{
if(a<b && a<c)
printf("%d ",a);
else if(c<b)
printf("%d ",c);
else
printf("%d ",b);
}
[Error] expected primary-expression before 'if'
WHY IT GIVES ME THIS ERROR
Comment