Home
Suva Programming
Home
SAP
Home
CPP
CPP program to print the reverse of a string
CPP program to print the reverse of a string
Suva Programming
Monday, February 10, 2020
Source Code:
#include<iostream>
#include<string.h>
using namespace std;
int main()
{
char a[10];
int i;
cout<<"Enter a string: ";
cin.getline(a,10);
cout<<"The reversed name is: ";
for(i=10;i>=0;i--)
{
cout<<a[i];
}
return 0;
}
Program Output:
Post a Comment
0 Comments
Categories
CPP
(64)
Java
(4)
Java Virtual Machine
(1)
SAP
(58)
Shell Programming
(4)
Popular Posts
SAP ABAP Program to find the largest number among three given numbers
Tuesday, October 29, 2024
Program to create a custom screen where in field input it will check whether the number is odd or the number is even
Tuesday, May 07, 2024
CPP program to subtract two matrix
Monday, February 10, 2020
Contact Form
Name
Email
*
Message
*
0 Comments