#include <stdio.h>
#include <string.h>
int main()
{
char first[100], second[100], temp[100];
printf("Enter first string : \t ");
gets(first);
printf("Enter second string : \t");
gets(second);
printf("\n\n Before Swapping\n\n");
printf("First string is : %s\n", first);
printf("Second string is : %s\n\n", second);
strcpy(temp, first);
strcpy(first, second);
strcpy(second, temp);
printf("After Swapping\n");
printf("First string will be : %s\n", first);
printf("Second string will be : %s\n", second);
return 0;
}
OUTPUT : -
Follow
Me On Social Media :-
INSTA photography page :- https://www.instagram.com/photo_mania_hub/
Twitter link : - https://twitter.com/ApurbaKhanra199
Facebook page link (Crazy Coders) :-https://www.facebook.com/codercrazy/?modal=admin_todo_tour
Insta photography link :- https://www.instagram.com/photo_mania_hub/
Facebook link :- https://www.facebook.com/profile.php?id=100009747586288
For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/
0 Comments