Program for string concatenation using string handling functions

#include<stdio.h> #include<conio.h> #include<string.h> void main() { char s [20],c[10]; printf (“enter two s...

#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char s [20],c[10];
printf (“enter two strings");
gets(s) ;
gets(c);
strcat ( s,c);
puts ( s);
getch();
}


Related

C Programs 3293837778147081289

Post a Comment

emo-but-icon

item