我每次都会收到此错误,我也不是怎么回事..任何人都可以帮忙吗?

@Mike Kinghan这是新错误

08:21:40 **** Incremental Build of configuration Debug for project 5exe ****
make all
Building file: ../5exe.c
Invoking: GCC C Compiler
gcc -I"C:\Users\Dylan Galea\workspace\5\source" -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"5exe.d" -MT"5exe.o" -o "5exe.o" "../5exe.c"
../5exe.c: In function 'main':
../5exe.c:42:10: warning: variable 'temp' set but not used [-Wunused-but-set-variable]
  char temp; //temporary storage to remove the extra ( character
      ^
Finished building: ../5exe.c

Building target: 5exe.exe
Invoking: MinGW C Linker
gcc -L"C:\Users\Dylan Galea\workspace\5\Debug -o "5exe.exe"  ./5exe.o   -l5
/usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"'
/usr/bin/sh: -c: line 1: syntax error: unexpected end of file
makefile:29: recipe for target '5exe.exe' failed
make: *** [5exe.exe] Error 258

08:21:40 Build Finished (took 463ms)

最佳答案

您的源代码(您未发布)具有未终止的字符串文字,例如

printf("example text %d with an integer , 4);
/*                                     ^ missing `"' /*

10-08 12:19