A computer blog as colorful as Lapskaus ingredients ...
#include #include int main() { char str1[50] = "Hello "; char str2[] = "World"; strcat(str1, str2); printf("str1: %s\n", str1); return 0;}
Output:
str1: Hello World
Post a Comment
No comments:
Post a Comment