Scansets
#include <stdio.h>
#define MAX 50
int main(){
char str[MAX];
printf("Enter the string:");
scanf("%49[^\n]",str);
printf("\nThe string is %s",str);
}
#include <stdio.h>
int main() {
char firstName[50], lastName[50];
pri...
kaustubhk.hashnode.dev1 min read