Introduction
In this lab, we will learn how to write a C program to find the largest number among n
user input numbers. We will use a simple for loop to iterate through all the input numbers and compare each number with a variable 'big' that will store the largest number found so far.
Note: You need to create the file
~/project/main.c
yourself to practice coding and learn how to compile and run it using gcc.
cd ~/project
## create main.c
touch main.c
## compile main.c
gcc main.c -o main
## run main
./main