I have compiled using the command:
$gcc -o xyz xyz.c
Is there a way to execute this in C other than using:
$./xyz <arg list>
I want to execute it without ' ./ ' as:
$xyz <arg list>
Is it possible?
I have compiled using the command:
$gcc -o xyz xyz.c
Is there a way to execute this in C other than using:
$./xyz <arg list>
I want to execute it without ' ./ ' as:
$xyz <arg list>
Is it possible?