0
; Before return 0;
IM IN ALL CAPS BECAUSE MY IPAD KEYBOARD IS STUCK ON IT. WHY DO I GET AN ERROR SAYING I NEED TO PUT A SEMICOLON BEFORE RETURN 0; ? THATS NOT WHAT IT SAID YOU NEED TO DO IN THE C++ TUTORIAL
2 Antworten
+ 5
; operator is called the termination operator. It is used for statement termination.
So you need to put ; after every statement except for blocks which you'll learn as you move forward in the tutorials.
Good luck!
+ 1
Okay, thanks for the help!