Answers for "c copy strings"

C
1

c copy string

char *str = "Hello World!";
char copy[64];		// or 'char *copy = malloc(strlen(str) + 1);'
strcpy(copy, str);
Posted by: Guest on March-22-2020
0

c copy 2 strings\

#include <string.h>
#include <stdio.h>
int main()
{
  char str[9]="A string";
  char copy[9];
  strcpy(copy,str);
  printf("Copied String : %s",copy);
  return 0;
}
Posted by: Guest on October-28-2020

Code answers related to "C"

Browse Popular Code Answers by Language