Welcome

Hi! This blog is for beginners of c++ and java .You can check and pick codes for your programming assignments. This will also help you to understand the concepts of these programming languages. Its all about programming.

LAB ASSIGNMENT#4 Q2;

Tuesday, May 17, 2011

#include<iostream>
using namespace std;
#include<conio.h>
#include<string>
void main()
{
    string str;
    getline(cin,str);
    int size=str.length();
    for(int i=size-1;i>=0;i--)
    {
        cout<<str[i];
    }
    _getch();
   
   
}