C++ Tutorial

Опубликовано: 18 Июнь 2026
на канале: Alan Carre
280
2

Watch Entire Series: http://www.youtube.com/view_play_list...

Back to basics...

How to deal with argc and argv in general? Here I begin to explain my solution to the problem which uses a special class that I created called TsCmdLine which uses the variable argument list macros to extract the command line variables argc, argv and "environ". The class has 4 constructors and I managed to get through the first and simplest one (no switches, just plain old arguments).

A