ฉันกำลังพยายามรวบรวมโค้ดชิ้นนี้จากหนังสือ "The C Programming Language" (K & R) เป็นโปรแกรม UNIX เวอร์ชันเปลือยwc
:
#include <stdio.h>
#define IN 1; /* inside a word */
#define OUT 0; /* outside a word */
/* count lines, words and characters in input */
main()
{
int c, nl, nw, nc, state;
state = OUT;
nl = nw = nc = 0;
while ((c = getchar()) != EOF) {
++nc;
if (c == '\n')
++nl;
if (c == ' ' || c == '\n' || c == '\t')
state = OUT;
else if (state == OUT) {
state = IN;
++nw;
}
}
printf("%d %d %d\n", nl, nw, nc);
}
และฉันได้รับข้อผิดพลาดต่อไปนี้:
$ gcc wc.c
wc.c: In function ‘main’:
wc.c:18: error: ‘else’ without a previous ‘if’
wc.c:18: error: expected ‘)’ before ‘;’ token
ฉบับที่ 2 ของหนังสือเล่มนี้มาจากปี 1988 และฉันค่อนข้างใหม่สำหรับ C อาจจะเกี่ยวข้องกับเวอร์ชันคอมไพเลอร์หรือบางทีฉันก็แค่พูดเรื่องไร้สาระ
ฉันเคยเห็นในรหัส C สมัยใหม่ว่ามีการใช้main
ฟังก์ชันที่แตกต่างกัน:
int main()
{
/* code */
return 0;
}
นี่เป็นมาตรฐานใหม่หรือฉันยังสามารถใช้ main-type ได้หรือไม่
|| c = '\t')
ละเอียด ดูเหมือนว่าจะเหมือนกับรหัสอื่น ๆ ในบรรทัดนั้นหรือไม่