"Stray '\ 226' no programa" erros do compilador

Eu escrevi o seguinte código. É implementar a Lista Duplamente Vinculada. Mas os erros apareceram.

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

Erros:

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

Qualquer ideia sobre o erro perdido. Quais são esses números aleatórios?

questionAnswers(2)

yourAnswerToTheQuestion