Strcopy() Code Example


Example: strcpy

/* strcpy example */ #include <stdio.h> #include <string.h>  int main () {   char str1[]="Sample string";   char str2[40];   char str3[40];   strcpy (str2,str1);//str1 copies to str2   strcpy (str3,"copy successful");   printf ("str1: %s\nstr2: %s\nstr3: %s\n",str1,str2,str3);   return 0; }

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable