String From Backward:

Source Code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include<iostream>
using namespace std;

int main( )
{
    char str[80];

    cout<<"Enter string: ";
    cin.getline(str, 80);
    
    int l; //Hold length of string
    
    //Find the length of the string
    for(l = 0; str[l] != '\0'; l++);

    //Display the string backwards
    for(int i = l - 1; i >= 0; i--)
    {
        cout << str[i];
    }   
 
    return 0;
}

Post a Comment

 
Top