Created
December 2, 2017 14:45
-
-
Save OwiseKyawMinOo/c5ab17a085112d514d0dbc0c3560a364 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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