Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
char str1[32] = "hello"; /* will allocate 32 but only use 6 */
/* Concatenate the string - works like += */
strcat (str1, "World");
printf ("%s\n", str1);
char *str1 = "hello";
strcpy( str1, "HELLO" );