„Stray” 226 „w programie” błędy kompilatora

Napisałem następujący kod. Ma zaimplementować listę podwójnie połączonych. Ale pojawiły się błędy.

while(x==1); // This line showed errors
return 1;     

Błędy:

DoublyLinkedList.c: In function `main':
DoublyLinkedList.c:194: error: stray '\226' in program
DoublyLinkedList.c:194: error: stray '\128' in program
DoublyLinkedList.c:194: error: stray '\156' in program
DoublyLinkedList.c:194: error: `The' undeclared (first use in this function)
DoublyLinkedList.c:194: error: (Each undeclared identifier is reported only once
DoublyLinkedList.c:194: error: for each function it appears in.)
DoublyLinkedList.c:194: error: parse error before "list"
DoublyLinkedList.c:194: error: stray '\226' in program
DoublyLinkedList.c:194: error: stray '\128' in program
DoublyLinkedList.c:194: error: stray '\157' in program

Jakikolwiek pomysł na błędny błąd. Jakie są te losowe liczby?

questionAnswers(2)

yourAnswerToTheQuestion