An open API service indexing awesome lists of open source software.

https://github.com/sameetasadullah/inter-process-communication-using-named-pipes

A simple C++ program to simulate inter-process communication using named pipes
https://github.com/sameetasadullah/inter-process-communication-using-named-pipes

cpp fork inter-process-communication linux named-pipes ubuntu

Last synced: 19 days ago
JSON representation

A simple C++ program to simulate inter-process communication using named pipes

Awesome Lists containing this project

README

        

Inter Process Communication Using Named Pipes

### Description
A simple `C++ Program` to simulate `Inter-Process Communication` using `Named Pipes`.

### Manual
1) Open `First Terminal` and use following commands to `Compile and Run First Code`:
```
g++ task1_1.cpp
```
```
./a.out
```

2) Open `Second Terminal` and use following commands to `Compile and Run Second Code`:
```
g++ task1_2.cpp
```
```
./a.out
```

### Working Screenshot