In the 8th line below, I get a compiler error that says:
Expected primary expression before token ")"
What does it mean, and what is the mistake? I'm new to this, so please help!
float a,b,c;
printf("side1=");
scanf("%f",&a);
printf("side2=");
scanf("%f",&b);
printf("side3=");
scanf("%f",&c);
((a||b||c||)!=0&&(a+b)>c&&(b+c)>a&&(a+c)>b)?printf("Triangle"):printf("NOT a TRIANGLE");
getch();