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)
| Autor(es) | Arthur van Stratum |
| Fecha de entrega | Sin fecha de envío |
| Tiempo límite de envío | Sin límite de envío |
| Etiquetas de categoría | 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)