@@ -11,8 +11,14 @@ char stringTwo[stringSize];
int readIntoList(char* stringList){
int index = 0;
while (getchar()=='\n'){
//eat up new lines in buffer
while(1){
char next = getchar();
if (next != '\n'){
stringList[index] = next;
index++;
}else{
break;
}
while (1) {
The note is not visible to the blocked user.