A program that read two integer & display Multiply in C.

#include<stdio.h>
#include<conio.h>

void main()
{
    int x,y,m;
    clrscr();
    printf("Enter first number : ");
    scanf("%d",&x);
   
    printf("\nEnter second number : ");
    scanf("%d",&y);

    m=x*y;
   
    printf("\nMultiply = %d",m);
    getch();
}


///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........