Cod sursa(job #2693056)
| Utilizator | Data | 4 ianuarie 2021 17:41:31 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <unistd.h>
using namespace std;
int main() {
int pid = fork();
if (pid == 0)
{
sleep(5);
}
else
{
//system("telnet 84.117.24.129 9000");
}
return 0;
}