Is it possible to execute a process whose argc = 0? I need to execute a program but it is extremely important for its argc to be equal to 0. Is there a way to do that? I tri
You can write a program that calls exec directly; that allows you to specify the command-line arguments (including the program name) and lack thereof.