Language
C
Compiler
clang 9.0.0
Options
Warnings
Optimization
C11
-pedantic
$ clang prog.c -Wall -Wextra -O2 -march=native -std=c11 -pedantic
Enter the number you wish to multiply:
Enter how many times you want to multiply the number:
Multiplication is as follows:
3 X 1 = 3
3 X 2 = 6
3 X 3 = 9
3 X 4 = 12
sum = 30
Exit Code:
0