top of page
Blog

The Meaning Of argc And argv In main()
The input parameters argc and argv are used to send arguments to a program. The program receives arguments thanks to argv, which is a...
Damiano Pe
Nov 2, 2021
58 views

The Correct Return Type Of main()
The return type of main must be int, not void. It returns zero to indicate successful termination, otherwise a non-zero value for an...
Damiano Pe
Oct 23, 2021
25 views
bottom of page