Concatenate Two String C Program

By | November 21, 2015

C Program To Concatenate Two Strings

Learn How To Concatenate Two Strings in C Programming Language. Learn how to concatenate strings without strcat() Library function as well as using Pointers.

A String is basically an Array of Characters indicated by ‘\0’ as its terminating character.

Method 1: C Program Code To Concatenate Two Strings using strcat() Library Function

 

Method 2: C Program To Concatenate A String without using strcat() and with Pointers

 

Output

C Program To Concatenate Two Strings without using strcat and using Pointers

If you have any compilation errors or doubts in this C Program To Concatenate Strings using Pointers, let us know about in the Comment Section below.

One thought on “Concatenate Two String C Program

  1. Damodar Patil

    Is Strings important for interviews? Or should I only focus on Pointers and Data Structures?

    Reply

Let's Discuss