fix(typo): fixed typo in cpp - main() function heading (#4120)

pull/4208/head
Balaji Sivasakthi 1 year ago committed by GitHub
parent 42b3595367
commit 93a6ae3f81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/data/roadmaps/cpp/content/101-setting-up/102-first-program.md

@ -25,7 +25,7 @@ The first line of the program `#include <iostream>` is a [preprocessor directive
#include <iostream>
```
##`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.

Loading…
Cancel
Save