Made the comment more clear (#30524)

Added clarity to the given comment
This commit is contained in:
athreya2013
2019-01-29 21:40:58 +05:30
committed by Christopher McCormack
parent 48313a48a6
commit aec38c04d7

View File

@ -68,7 +68,7 @@ int main() {
case '/': case '/':
printf("%.1lf / %.1lf = %.1lf",a, b, a/b); printf("%.1lf / %.1lf = %.1lf",a, b, a/b);
break; break;
// Operator is doesn't match any case constant (+, -, *, /) // If the Operator doesn't match with any case constant (+, -, *, /)
default: default:
printf("Error! operator is not correct"); printf("Error! operator is not correct");
} }