anonymousperson1337
anonymousperson1337
About
- Username
- anonymousperson1337
- Joined
- Visits
- 0
- Last Active
- Roles
- Member
Comments
-
MAIN is a function. Functions have types (like data types, INT, CHAR, etc). In C, MAIN cannot be VOID. It needs to return a INT. Just place "int" before the word main, and put a "return 0;" before your final close bracket. Tha…
-
MAIN is a function. Functions have types (like data types, INT, CHAR, etc). In C, MAIN cannot be VOID. It needs to return a INT. Just place "int" before the word main, and put a "return 0;" before your final close bracket. Tha…