diff --git a/ProgUit Lab1/ProgUit Lab1.cpp b/ProgUit Lab1/ProgUit Lab1.cpp index 9268f78..df55fb3 100644 --- a/ProgUit Lab1/ProgUit Lab1.cpp +++ b/ProgUit Lab1/ProgUit Lab1.cpp @@ -60,8 +60,12 @@ input_data(istream& hin, bool promt = false) { -int main() +int main(int argc, char* argv[]) { + if (argc > 1) { + cout << "argv[0] = " << argv[0]; + return 0; + } curl_global_init(CURL_GLOBAL_ALL); diff --git a/x64/Debug/ProgUit Lab1.exe b/x64/Debug/ProgUit Lab1.exe deleted file mode 100644 index 1491bfa..0000000 Binary files a/x64/Debug/ProgUit Lab1.exe and /dev/null differ diff --git a/x64/Debug/ProgUit Lab1.pdb b/x64/Debug/ProgUit Lab1.pdb index f01abde..d3805f8 100644 Binary files a/x64/Debug/ProgUit Lab1.pdb and b/x64/Debug/ProgUit Lab1.pdb differ