I am unable to pass integer value through the command line in turbo c++. Please help me.
|
feedback
|
|
You'll have to pass it through as a string, and then parse it with something like Command line arguments are always strings (or | |||||
feedback
|
|
You cannot pass integers from the command line, only strings. Pass in your number, and use | |||
|
feedback
|
|
You can pass arguments to executable only as strings. You could use atoi to convert string to integer.
| |||
|
feedback
|
|
I really wonder why you are still sticking to the ancient compiler! The sooner you switch to modern compilers the better it is! Anyways the code for doing that is below:
| |||
|
feedback
|
|
If you're passing it in just for this one time, and you don't need to maintain the parameters you can give your main function, you can convert the If you're going to have more parameters, you probably want some way to name them, too. Then it's worth taking a look at the There even are command-line parsing frameworks out there that allow for type-checking and the lot. | |||
|
feedback
|