Untitled

 avatar
unknown
plain_text
a year ago
231 B
4
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