Header menu

_________________________________________________________________________________

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;
    }

No comments:

Post a Comment