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
- Host: GitHub
- URL: https://github.com/sameetasadullah/inter-process-communication-using-named-pipes
- Owner: SameetAsadullah
- Created: 2022-08-08T00:55:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-08T01:43:12.000Z (almost 3 years ago)
- Last Synced: 2025-03-15T02:14:47.995Z (4 months ago)
- Topics: cpp, fork, inter-process-communication, linux, named-pipes, ubuntu
- Language: C++
- Homepage:
- Size: 85.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
![]()