![]() |
CMSC104Problem Solving & Computer Programming |
Make sure that you follow all the coding standards
Create an interactive program to print out a multiplication table based on how many rows and columns a user would like to see.
Before you start coding, design and pseudocode your problem
Create a new file called functions4.txt At the top, list the basic functions the program will have to perform
Develope your code in functions4.c to implement the pseudocode.Hint: There should be at least two.
For main() and each of your functions, write appropriate pseudocodePass all parameters by reference
From Linux on the GL machine:Create a ./CMSC104/hw8 directory for your homework. Compile the program:
gcc -o functions4 functions4.c
Run the program to make sure it works:./functions4
Use the SUBMIT utility to turn in the homework.submit cs104_grasso hw08 functions4.txt functions4.c functions4