printf("И : %s ",argv[j]);
In the loop, I output the parameters that I entered through the console ... but outputs only one character at a time. For example: instead of ".cpp" - only ".", How to fix it?
printf("И : %s ",argv[j]);
In the loop, I output the parameters that I entered through the console ... but outputs only one character at a time. For example: instead of ".cpp" - only ".", How to fix it?
Source: https://ru.stackoverflow.com/questions/10934/
All Articles