User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:string.h:strcpy

This is an old revision of the document!


strcpy

#include <string.h>
//#include <windows.h> /* uncomment this for Windows */
 
    char *strcpy(char *str1, const char *str2);

Description

strcpy copy a c string pointed by str2 into the array pointed by str1 including the terminating null character.

strcpy C Example Code

/* 
 * strcpy c example code
 * http://code-reference.com/c/string.h/strcpy 
 */
#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
#include <string.h>
 
int main( void ) {
 
char string[] = "copy me"; /* the size of the array is calculated automatically */
char string2[20];
 
 
if( strcpy(string2, string) != 0 )
  printf( "copy success: %s\n",  string2 );
else
  printf( "copy failure\n" );
 
 
return 0;
}

Output of strcpy example

  user@host:~$ ./strcpy 
  copy success: copy me

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/string.h/strcpy.1396666871.txt · Last modified: 2024/02/16 01:03 (external edit)

Impressum Datenschutz