Hi, I have got to the section on command line arguments on my online textbook. All the information I can find on it seems to assume that I know how to put command lines into my program but I don't have a clue :$
Can anyone help?
coveredinflies 0 Light Poster
Recommended Answers
Jump to Postcommand line arguments are entered into your program via main() function. it has two optional arguments
int main(int argc, char* argv[])
argc == number of arguments and always > 0 because the name of the program is 1argv == array of characters that contain the strings that you …
Jump to PostWhat version of Windows are you using? I think they all have an icon on the Start menu called Command Prompt. Goto Start --> Accessories, and you will find it on that menu.
When you get that window you will have to change directories to the location where your …
All 5 Replies
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
coveredinflies 0 Light Poster
Radical Edward 301 Posting Pro
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
coveredinflies commented: Thanks :) +1
coveredinflies 0 Light Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.