🔴 Class 71 : Combining Two C strings in one

Опубликовано: 21 Март 2026
на канале: Eagles Tech with AI
156
3

#include stdio.h
int main()
{
char str1[25];
char str2[25];
printf(" Input string1 : ");
gets(str1);
printf(" Input string2 : ");
gets(str2);
strcat(str2 ,str1);
printf("\nString is %s",str2);
}

🔴 Daily Reel Upload
🔴 Follow to Learn C - Your first step to Programming

Connect with us on Instagram for daily short videos where we help students like you with my programming knowledge so that they can finally grow and scale future in Software, Website & Mobile application development.

#clanguage #clanguageprogramming #cprogramming #cprogramminglanguage