What the code I wrote is doing

The #include gives us code that has been prewritten and is needed for our our program.
The int main() shows the beginning of the program for our compiler.
The first expression statements are printing in the console our story.
The declaration statements are giving us the values for our secret numbers.
The second group of expression statements are printing the sum and product of the secret numbers.
The return 0 is for our compiler to check if our code is working and in good shape, giving us a zero for good code.

2 Likes

Privacy & Terms