-2 c
我写了以下代码.它是实现双链表.但错误突然出现.
while(x==1); // This line showed errors
return 1;
Run Code Online (Sandbox Code Playgroud)
错误:
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
Run Code Online (Sandbox Code Playgroud)
关于杂散错误的任何想法.那些随机数是什么?
小智 5
我剪切了一些word文档中的代码.减号由我的文本编辑器显示,但实际上是八进制226或十六进制96的值.减号应该是十六进制2D.当我将代码作为二进制文件打开时,我可以看到它 - 八进制226作为块显示在ascii列表中.