.
Find errors if any :
a) if(a + b = c && c<0)
printf("wrong");
Answers
Answered by
3
if (a + b == c && c < 0) {
printf("wrong");
}
Similar questions