Back To C++ User Defined Functions Index
//program to create a function that prints the table of the number passed to it as argument #include
#include
void printtable(int); void printtable(int a) { int i; for(i=1;i<=10;i++) { cout<
>a; printtable(a); getch(); }