how to take integers as command line arguments?

杀马特。学长 韩版系。学妹 提交于 2019-11-28 06:53:52

You need to use atoi() to convert from string to integer.

All of the answers above are broadly correct (Vikram.exe gets props for explaining why you have to call a library function, which nobody else bothered to do). However, nobody has named the correct library function to call. Do not use atoi. Do not use sscanf.

Use strtol, or its relative strtoul if you don't want to allow negative numbers. Only these functions give you enough information when the input was not a number. For instance, if the user types

./a.out 123cheesesandwich

atoi and sscanf will cheerfully return 123, which is almost certainly not what you want. Only strtol will tell you (via the endptr) that it processed only the first few characters of the string.

(There is no strtoi, but there is strtod if you need to read a floating-point number.)

As you have already used in your code, the prototype for main function is

int main (int argc, char** argv)

What ever arguments are provided as command line arguments, they are passed to your 'program' as an array of char * (or simply strings). so if you invoke a prog as foo.exe 123, the first argument to foo.exe will be a string 123 and not an integer value of 123.

If you try casting the argument to integer (as you said) probably using some thing like: (int) argv[1], you will not get the integer value of first argument, but some memory address where the first arg is stored in your address space. To get an integer value, you must explicitly convert string value to integer value. For this, you can use atoi function. Check THIS man page for similar functions that can be used for conversion.

Use atoi.

cvalue = atoi( optarg );

And declare cvalue as an int.

Sulla

atoi(), which means ascii to integer is the function to use. Similarly, atof() can be used to get float values.

stefan

In this situation i would go for a sscanf().

No, you can't just cast to convert it to an integer value. You need to transform it using sscanf, atoi, atol or similar function.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!