'C' Program 3
This program performs basic binary arithmetic operation on two integer operands like addition, subtraction, multiplication, division and reminder and prints result in screen. It first takes two integers as input from user using scanf function and stores them in 'a' and 'b' int variables and performs addition, subtraction, multiplication, division and reminder operations and stores results in 'sum', 'sub' , 'mul', 'div' and 'rem' variables respectively. Next, it prints the result on screen using printf function.