#include <stdio.h>
#include <unistd.h>

int main(void) {
	printf("Before exec()\n");
	execl("/bin/ls", "ls","-1", NULL); 
	printf("This line will not be printed if exec is succesful\n");
	return 0;
}
