here are the errors that I am getting
1>------ Rebuild All started: Project: assignment 408, Configuration: Debug Win32 ------
1>Deleting intermediate and output files for project 'assignment 408', configuration 'Debug|Win32'
1>Compiling...
1>test4.c
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(30) : warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1> c:\program files\microsoft visual studio 8\vc\include\string.h(74) : see declaration of 'strcpy'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(134) : error C2143: syntax error : missing ';' before 'type'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(135) : error C2143: syntax error : missing ';' before 'type'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(136) : error C2143: syntax error : missing ';' before 'type'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(179) : error C2065: 'i' : undeclared identifier
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(182) : error C2065: 'str' : undeclared identifier
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(182) : warning C4047: 'function' : 'char *' differs in levels of indirection from 'int'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(182) : warning C4024: 'fgets' : different types for formal and actual parameter 1
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(183) : error C2143: syntax error : missing ';' before 'type'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(184) : error C2065: 'token' : undeclared identifier
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(184) : warning C4047: 'function' : 'char *' differs in levels of indirection from 'int'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(184) : warning C4024: 'strtok' : different types for formal and actual parameter 1
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(184) : error C2065: 'delims' : undeclared identifier
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(184) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(184) : warning C4024: 'strtok' : different types for formal and actual parameter 2
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(184) : warning C4047: '=' : 'int' differs in levels of indirection from 'char *'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(186) : warning C4047: '!=' : 'int' differs in levels of indirection from 'void *'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(188) : warning C4047: 'function' : 'char *' differs in levels of indirection from 'int'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(188) : warning C4024: 'spellcheck' : different types for formal and actual parameter 2
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(189) : warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int'
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(189) : warning C4024: 'strtok' : different types for formal and actual parameter 2
1>c:\users\mike regas\documents\cop3205\program assignments\assignment 408\assignment 408\test4.c(189) : warning C4047: '=' : 'int' differs in levels of indirection from 'char *'
1>Build log was saved at "file://c:\Users\Mike Regas\Documents\COP3205\Program Assignments\assignment 408\assignment 408\Debug\BuildLog.htm"
1>assignment 408 - 8 error(s), 14 warning(s)
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30:





by: Infinity08Posted on 2008-11-10 at 14:03:15ID: 22926066
Can you post the compiler errors you get ?