#include <stdio.h>
int main()
{
char a1[100], b1[100], i;
printf("Enter the string a1: ");
scanf("%s",a1);
for(i = 0; a1[i] != '\0'; ++i)
{
b1[i] = a1[i];
}
b1[i] = '\0';
printf(" String b1: %s", b1);
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
FB photography page :- https://www.facebook.com/photomaniahub/?modal=admin_todo_tour
For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/
0 Comments