I am making a little calculator in C, and i want to pass simple arithmetic formulae to my program. But it really does not like me passing character '*' to my program. Why not? And how can I work around this without changing the asterix to something else? Thanks
|
The character There are several ways to deal with it:
|
|||||||||||
|
|
|
||||
|
|
|
* will invoke globbing and expand to all files in the directory you're in. Just quote the * and run your program like
or
With the first case, your program will get passed only 1 argument, argv[1] will be the string "10 * 10" , the second case you'll get passed 3 arguments |
|||
|
|
|
The Linux command shell (bash, tcsh, ksh, whatever) will expand the '*' into a list of files before your program even sees it. There's very little you can do about that - you could have the users put the asterisk in single quotes, or escape it with a backslash, or use 'x' instead. None is particularly user friendly. |
|||
|
|
|
One last technique not mentioned. Insteead of quoting/escaping every usage, you can turn off globbing. This way, if you want to use the calculator a lot, you don't have to escape every usage:
|
|||
|
|
|
|||
|
|
|
The "calc" application that you can retrieve from deb repositories apt-get install calc can evaluate 3*3 but not 3 * 3 |
|||
|
|