サムのLearnCの例を24時間でコンパイルしようとしています。
次のコードをコンパイルしようとすると、エラーが発生します。
/* 03L02.c: Calculate an addition and print out the result */
#include <stdio.h>
/* This function adds two integers and returns the result */
int integer_add( int x, int y )
{
int result;
result = x + y;
return result;
}
int main()
{
int sum;
sum = integer_add(5, 12);
printf(“The addition of 5 and 12 is %d.\n”, sum);
return 0;
}
これは私のコンパイラが与えるエラーです:
In function main
stray "\147\' in program
The undeclared identifier is declared only once
for each function it appears in
syntax error before addition
stray "\' in program
stray "\148' in program
前もって感謝します。