Grammatical Correction (#32446)

Made a small grammatical correction in line 64
This commit is contained in:
Rohan Jha
2019-01-29 22:46:21 +05:30
committed by Christopher McCormack
parent a4836c1a65
commit 1edffae901

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;
// If the Operator doesn't match with any case constant (+, -, *, /) // If the operator doesn't match any case constant (+, -, *, /)
default: default:
printf("Error! operator is not correct"); printf("Error! operator is not correct");
} }