strcpy - copia uma string
#include <string.h>
char *strcpy(char *dest, char *src);
Esta função copia a string em src
, incluindo seu caractere terminador '\0'
, para a memória em dest
.
Esta função retorna dest
.
#include <cs50.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char *s = get_string("s: ");
if (s != NULL)
{
char *t = malloc(strlen(s) + 1);
if (t != NULL)
{
strcpy(t, s);
printf("s: %s\n", s);
printf("t: %s\n", t);
}
}
}