Header menu

_________________________________________________________________________________
Showing posts with label multiplication. Show all posts
Showing posts with label multiplication. Show all posts

Sunday, 3 September 2017

Multiplication in C

#include<stdio.h>
#include<conio.h>
int main()
{
    int i=14;
    int j=15;
    int k=i*j;
    printf(" The product is %d",k);
    getch();
    return 0;
    }