diff --git a/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md b/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md index a62dadce8..ffee59b44 100644 --- a/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md +++ b/src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md @@ -25,7 +25,7 @@ The first line of the program `#include ` is a [preprocessor directive #include ``` -##`main()` Function +## `main()` Function In C++, the `main()` function serves as the entry point of your program. The operating system runs your program by calling this `main()` function. It should be defined only once in your program and must return an integer.