Concatenate Strings Using Pointer

# Introduction In C programming, we can concatenate two strings using pointer by pointing the base address of the two strings to a char pointer variable and incrementing the pointer to the end of the first string and then copying the characters of the second string to the end of the first. In this lab, you will learn how to concatenate two strings using pointer in C programming language.

|60 : 00

Click the virtual machine below to start practicing