Let's Learn Java Programming..... Through Lots of Coding Examples For Each Topic. Now Go For It ..!
Concat Two Strings #include #include int main() { char a[100], b[100]; printf("Enter the first string\n"); gets(a); printf("Enter the second string\n"); gets(b); strcat(a,b); printf("String obtained on concatenation is %s\n",a); return 0; }