Showing posts from 2016

Integer arithmetic operations in C programming

#include<stdio.h> int main ( void ) { int a = 17 ,b = 4 ; printf( "Sum=%d \n " ,a + b); printf( "Difference=%d \n " ,a - b); printf( "Product=%d \n " ,a * b); printf( "Quotient=%d \n &…

Load More
That is All