#include #include #include void fun() { printf("fun times!\n"); } void mul(int first) { int second = 0; char buf[8] = {1,2,3,4,5,6,7,8}; printf("Enter a number: "); gets(buf); second = atoi(buf); printf("%d*%d = %d\n", first, second, first*second); } int main() { int first = 2; mul(first); return 0; }