diff --git a/guide/english/c/operators/index.md b/guide/english/c/operators/index.md index 2ecf12c064..a29f54969c 100644 --- a/guide/english/c/operators/index.md +++ b/guide/english/c/operators/index.md @@ -50,13 +50,14 @@ Operators in C specifies the Mathematical, Conditional and Logical Operations to int c = --a; // prefix operator; a = 5, c = 5 ``` - C Program to demonstrate the working of arithmetic operators + - C Program to demonstrate the working of arithmetic operators ```C #include + int main() { - int a = 9,b = 4, c; - + int a = 9, b = 4, c; + c = a+b; printf("a+b = %d \n",c);