<Since not many compilers support C99 yet, looking at ANSI C might not be all that bad... >
For the simpler C examples out on the web, only a few modifications need to be taken into account to get them to compile on PellesC. For example, but not limited to:
a)prototype all user defined functions which will be called in the app., after the includes and before main
b)main() change to int main(void)
c) return 0 or something else before the closing brace of main
Well, I'm just a beginner myself.
ROM