https://github.com/patilyashh/string-reverce
Day 3 of 75 Days C programing challenge || #3 ||
https://github.com/patilyashh/string-reverce
Last synced: 10 months ago
JSON representation
Day 3 of 75 Days C programing challenge || #3 ||
- Host: GitHub
- URL: https://github.com/patilyashh/string-reverce
- Owner: PATILYASHH
- Created: 2024-02-13T15:58:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-13T17:01:19.000Z (over 2 years ago)
- Last Synced: 2025-07-06T10:02:33.187Z (about 1 year ago)
- Language: C
- Size: 79.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# String Reversal Program
This is a simple C program that reverses a string entered by the user.
## Usage
1. Compile the program using a C compiler, for example, GCC:
```
gcc -o string_reversal string_reversal.c
```
2. Run the compiled executable:
```
./string_reversal
```
3. Enter a string when prompted.
4. The program will output the original string and its reversed version.
## Example
Enter String Here : hello-world
Original string : hello-world
Reversed string : dlrow-olleh
## Contributing
Contributions are welcome! If you would like to contribute to this project, feel free to fork the repository and submit a pull request with your changes. If you have any questions or suggestions, please open an issue.