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)
| יוצרים | Arthur van Stratum |
| מועד הגשה | אין מועד הגשה |
| מגבלת הגשות | אין הגבלה |
| תגיות קטגוריה | 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)