8 lines
106 B
C
8 lines
106 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main(int argc, char **argv) {
|
||
|
|
printf("Executable: %s\n", argv[0]);
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|