C Programming Language |
malloc |
calloc |
memset |
memcpy |
memory |
strcpy |
string |
strtok |
isalnum |
cctype |
errno |
cfenv |
clock |
difftime |
mktime |
ctime |
fprintf |
fscanf |
printf |
scanf |
stdio |
math |
defined in header file string.h
char * strcpy( char * destination, const char * source);
The strcpy() function copies the string pointed by source (including the null) to the destination pointer.
Parameter Name | Description |
---|---|
destination | The Pointer to the destination |
source | The Pointer to the source |
pointer to the destination.
#include <stdio.h>
#include <string.h>
int main ( int argc, char* argv[])
{
char source_str[] = "Test Message";
char dest_str[100];
memset( dest_str, 0, sizeof(dest_str));
strcpy( dest_str, source_str);
printf("%s\n", dest_str);
return EXIT_SUCCESS;
}
zalloc is a third party library
posted on 2018-12-12 20:46:30 - C Programming Language Tutorials
posted on 2017-12-29 22:52:47 - C Programming Language Tutorials