Answers for "copy one string to another string in c"

C
1

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
1

copy string in c

strcpy(ch,n,p) copy string in c
Posted by: Guest on April-05-2022

Code answers related to "copy one string to another string in c"

Code answers related to "C"

Browse Popular Code Answers by Language