Program concatenate two string

Advertisements

Prev Tutorial Next Tutorial

Program to concatenate two string

Combined two string means add both string with each other, we can perform this operation using library function or without library function. For example if first string is john and second string is porter then after combined these string output is johnporter.

program combined two string

#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
char *ch1="john ";
char *ch2="porter";
char *ptr;
clrscr();
printf("\n\n1 st String: %s",ch1);
printf("\n\n2 nd String: %s",ch2);
strcat(ch1,ch2);
printf("\n\nString is: %s",ch1);
getch();
}

Output

1 st String: john
2 nd String: porter
String is: johnporter

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements