Factor Calculator

This calculator Contains a user-interface function which requests the user to enter a integer, and returns the given integer.

Contains a print function which uses a for loop to generate a list of factors starting from 1 to the given number itself with indeces.

Please enter an integer to check its factors: 72 Index Factor 1 1 2 2 3 3 4 4 5 6 6 8 7 9 8 12 9 18 10 24 11 36 12 72

For this project, I had a struggle with programming this project because I was new at C program.