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)
Autores | Arthur van Stratum |
Prazo de entrega | Sem prazo |
Limite de submissão | No limitation |
Category tags | 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)