Multiplatform C program

2

If I make a program in C and do not use any Windows library by leaving the program completely pure in C can I compile it for Linux too?

Will it work normally?

    
asked by anonymous 04.08.2015 / 19:22

1 answer

1

Yes, if the ANSI C standard is used, or compatible libraries, then it will be possible to compile for windows and linux.

    
04.08.2015 / 19:25