Skip to content

Instantly share code, notes, and snippets.

@binh12A3
Created September 3, 2023 14:25
Show Gist options
  • Save binh12A3/036e6d6e6d110c2406040c9529c707eb to your computer and use it in GitHub Desktop.
Save binh12A3/036e6d6e6d110c2406040c9529c707eb to your computer and use it in GitHub Desktop.
#include <iostream> // for using std, printf(),...
#include <unistd.h> // for using fork(), execl()
int main(int argc, char** argv)
{
printf("Hello world\n");
execl("/bin/ls", "-ltr", (char*)0);
printf("Goodbye\n");
return 0;
}
/*
OUTPUT:
Hello world
mylib test test.cpp
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment