In this section, you will learn how to copy the string in C. You can see in the given example, two string variables st1 and st2 are created. A string is passed to the st1. Then we have used the library function strcpy() provided by the header file <string.h> that will copy the specified string from st1 to st2.
Here is the code:
StringCopy.c
#include <stdio.h>
|
Output will be displayed as:
STRING~1.EXE
![]()
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: C String Copy
Post your Comment