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.

Assignment 4 Question 1

Tuesday, May 17, 2011

#include<iostream>
using namespace std;
#include<string>
#include<conio.h>
void main()
{
    string str,str2;
    cout<<"Enter First String = ";
    cin>>str;
    cout<<"Enter 2nd String = ";
    cin>>str2;
    str.append(" ");
    str.append(str2);
    cout<<"After concatenation = "<<str;
    getch();
}