# include # include void main(void){ char name[50]; char checker[50]; int flag; int length; printf("Enter your name: "); scanf("%s",name); length= strlen(name); //printf("Your name is %s\n",name); //printf("%s is %d characters long\n",name,length); strcat(name," likes this class"); //printf("%s\n",name); strcpy(name,"this class is exciting"); //printf("%s\n",name); strcpy(checker,"this class is exciting"); flag=strcmp(name,checker); printf("%d\n",flag); }