I'm trying to get a string from the command line arguments, one of the arguments I'm trying to use is "$$". The argument resides in argv[2].
My program reads "$" fine (argv[2] = "$"), but when "$$" is used, argv[2] = "29628"....
- What's going on here?