https://github.com/sameetasadullah/reverse-and-uppercase-string-using-thread-joins
A simple C++ program to reverse the string and convert it into uppercase letters using multiple threads and joins
https://github.com/sameetasadullah/reverse-and-uppercase-string-using-thread-joins
convert-uppercase cpp linux reverse-string thread-joining threads ubuntu
Last synced: 29 days ago
JSON representation
A simple C++ program to reverse the string and convert it into uppercase letters using multiple threads and joins
- Host: GitHub
- URL: https://github.com/sameetasadullah/reverse-and-uppercase-string-using-thread-joins
- Owner: SameetAsadullah
- Created: 2022-08-08T01:08:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-08T01:43:26.000Z (almost 4 years ago)
- Last Synced: 2026-01-01T21:28:04.138Z (5 months ago)
- Topics: convert-uppercase, cpp, linux, reverse-string, thread-joining, threads, ubuntu
- Language: C++
- Homepage:
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Reverse and Uppercase String Using Thread Joins
### Description
A simple `C++ Program` to reverse the string and convert it into uppercase letters using `Multiple Threads and Joins`. There are two variations of the program, you can execute whichever you want:
1) With using pthread_t global variables `(main.cpp)`
2) Without using pthread_t global variables `(main1.cpp)`
### Manual
1) Use any of the following command to `Compile the Code`:
```
g++ main.cpp
```
```
g++ main1.cpp
```
2) Use the following command to `Run the Code`:
```
./a.out
```