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

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

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
```