where does stdio.o live in linux machine?

I’d suggest that you run gcc -v your_file.c. That will let you see exactly what commands your linker is using. You probably don’t have an stdio.o file to link against. Instead this is included in the C runtime library and the exact file will depend on your system configuration.

Leave a Comment