c++ convert argv[1] to a char array

Code:
main(int argc, char *argv[])
{
 ......
}

Now, the separators for argv are os dependant but typically they are tabs or spaces so

one, two, and three => four strings
one,two, and three => three strings

If you want number parameters you would convert the string into a number using atoi() atof() ...

HTH
Spiros
 
Can you explain your question a different way?

It is just that argv[1] is already a char array.

What is it that you wish to do?

Can you give us an example of your problem?

Mike.
 
well i wrote this fuction that needs a char array to work but just passing argv[2] doesnt work i wont compile i sayes it cannot convert it
 
whats the code?
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…