"Stray '\ 226' en el programa" errores del compilador

Escribí el siguiente código. Se trata de implementar la lista de doble enlace. Pero los errores aparecieron.

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

Errores:

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

Cualquier idea sobre el error callejero. ¿Cuáles son esos números al azar?

Respuestas a la pregunta(2)

Su respuesta a la pregunta