1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-12 12:13:58 +02:00

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

This commit is contained in:
Balaji Sivasakthi
2023-07-14 21:27:48 +05:30
committed by GitHub
parent 42b3595367
commit 93a6ae3f81

View File

@@ -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.