From f055b73196e2d50b7af16d835073d296507f6e70 Mon Sep 17 00:00:00 2001 From: baroood <43913234+baroood@users.noreply.github.com> Date: Sat, 6 Oct 2018 23:16:32 +0530 Subject: [PATCH] Update calculator.c --- Calculator/calculator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Calculator/calculator.c b/Calculator/calculator.c index b698966..2b44f8b 100755 --- a/Calculator/calculator.c +++ b/Calculator/calculator.c @@ -5,7 +5,7 @@ int main() { char op; double n1,n2; - printf("Enter an operator (+, -, *,/): "); + printf("Enter an operator (+, -, *,/):"); scanf("%c",&op); printf("Enter two operands: ");