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

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

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.