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)
Tác giả | Arthur van Stratum |
Hạn chót | Không có hạn chót |
Giới hạn nộp bài | Không có giới hạn |
Các tag chuyên mục | 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)