#include #include int main(){ const char* the_string = "TODO"; char* todo_value = getenv(the_string); int retval = system(todo_value); printf("Done, return value was %d\n", retval); return retval; }