Hi All, This seemingly simple thing is causing me alot of trouble. Can someone show me how I can convert an array of char[][] to a char**. Here is the pseudo code... void runWithArgs( char[][] args ) { char** execArgs; // convert args to execArgs execv( toStringz( "myprog" ), execArgs ); } thanks, Glen