Skip to content

Instantly share code, notes, and snippets.

@OwiseKyawMinOo
Created December 2, 2017 14:45
Show Gist options
  • Save OwiseKyawMinOo/c5ab17a085112d514d0dbc0c3560a364 to your computer and use it in GitHub Desktop.
Save OwiseKyawMinOo/c5ab17a085112d514d0dbc0c3560a364 to your computer and use it in GitHub Desktop.
#include<stdio.h>
#include<conio.h>
int main()
{
int a,b,c;
printf("b value ");
scanf("%d",&b);
printf("c value ");
scanf("%d",&c);
a=b*c;
printf("%d",a);
getch();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment