When you execute a C program, its function main()
is called with, as parameters, the name of the program and the arguments after the executable's name.
The signature of the main()
function must be the following :
int main(int argc, char **argv)
Auteur(s) | Arthur van Stratum |
Date limite | Pas de date limite |
Limite de soumission | Pas de limite |
Étiquettes de catégories | level1, s2, category_string |
When you execute a C program, its function main()
is called with, as parameters, the name of the program and the arguments after the executable's name.
The signature of the main()
function must be the following :
int main(int argc, char **argv)