char variable[20][200];
printf("Enter Strings\n");
for (i = 0; i < 10 ;i++)
scanf("%100s", variable[i]);
What is the function and operation logic of scanf(%100s) in here? I searched this command and i found some codes but i did not understand how it's working