28 lines
410 B
C++
28 lines
410 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#define ERROR(msg) { perror(msg); return 1; }
|
|
#define BUF_SIZE 1024
|
|
|
|
int main()
|
|
{
|
|
char* string = (char*)malloc(10);
|
|
strcpy(string, "Hello");
|
|
|
|
printf("forking\n");
|
|
|
|
pid_t pid = fork();
|
|
if (pid == 0)
|
|
{
|
|
printf("child '%s'\n", string);
|
|
return 0;
|
|
}
|
|
|
|
strcpy(string, "World");
|
|
printf("parent '%s'\n", string);
|
|
|
|
return 0;
|
|
}
|