Hello, I have a problem, quoting a char array. I have this string
-m file.dat -if "eth0" -s switch_on
And I need that pointed by an const char*, therefore:
constchar *t_argv = "-m file.dat -if "eth0" -s switch_on";, as you can see I have quotation marks (") in my string itself. I tried to quote this via: constchar *t_argv = "-m file.dat -if \"eth0\" -s switch_on";
but It won't work properly. Hoew do I quote the " sign properly?