From 93a6ae3f812e3b4fb5e077383ad724fbbb57533c Mon Sep 17 00:00:00 2001 From: Balaji Sivasakthi <65065614+balaji-sivasakthi@users.noreply.github.com> Date: Fri, 14 Jul 2023 21:27:48 +0530 Subject: [PATCH] fix(typo): fixed typo in cpp - main() function heading (#4120) --- .../roadmaps/cpp/content/101-setting-up/102-first-program.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.