Could I get a step by step on how to compile my file.c using Tiny C Compiler and Windows prompt?
Some questions I already have:
- Where do I stick all TCC files from the download?
- Do I have to compile stdio.h to use the printf function? (I'd like to do a 'Hello World').
This is what my file.c looks like:
// #include <stdio.h> // for printf
int main(void){
printf("Hello Eric. You've compiled and run the program! \n");
}
Thanks,
EDIT 1
So far I'm running it and getting the error: include file 'stdio.h' not found.