simplemind
simplemind
About
- Username
- simplemind
- Joined
- Visits
- 0
- Last Active
- Roles
- Member
Comments
-
the main() function returns an int. If the program executes without error, main() will return a 0. Also make sure you've included the stdio.h header file. Otherwise printf will not be defined. #include <stdio.h> int main() { printf…
-
the main() function returns an int. If the program executes without error, main() will return a 0. Also make sure you've included the stdio.h header file. Otherwise printf will not be defined. #include <stdio.h> int main() { printf…