Skip to content

Instantly share code, notes, and snippets.

View nampereira's full-sized avatar

Nuno Pereira nampereira

View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main()
{
printf("I'm..\n");
if (fork() != 0) {
printf("..the..\n");
if (fork() != 0) {
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <wait.h>
void main()
{
int i;
int status;