Untitled
unknown
plain_text
2 years ago
231 B
5
Indexable
#include<stdio.h>
int product(n1,n2){
int result=n1*n2;
return result;
}
int main(){ int n1,n2;
printf("Enter two numbers\n");
scanf("%d%d");
int res=product(n1,n2);
printf("%d",res);
return 0;
}
Editor is loading...
Leave a Comment