C Programming Language Operators Comprehensive Guide

Symbol Description Example Result + Addition 10 + 5 15 - Subtraction 10 - 5 5 * Multiplication 10 * 5 50 / Division 10 / 5 2 % Modulus 10 % 3 1 ++ Pre-increment x=2; y=++x; x=3; y=3; ++ Post-increment x=2; y=x++; x=3; y=2; -- Pre-decrement x=2; y=--x; x=1; y=1; -- Post-decrement x=2; y=x--; x=1; y=2; Sample code: #incl ...

Posted on Sat, 09 May 2026 01:11:44 +0000 by lisaNewbie