What about.?
Present the user with a menu with the following options
1) Print author info
2) Print multiplication table
3) Print custom multiplication table
0)Exit
If the user chooses option 1, then print your name and id
If the user chooses 2 then you should print a multiplication table ranging from 276x276 to 286x286
If the user picks option 3 then print a multiplication table starting at 0x0 up to a maximum value as entered by the user.
If the user chooses option 0 exit the program
If the makes any other selection, printf "Invalid Selection".
When the user prints out the multiplication table it should be in the following format:
0 1 2 3 4
0 0 0 0 0 0
1 0 1 2 3 4
2 0 2 4 6 8
3 0 3 6 9 12
4 0 4 8 12 16