I created the program only from the standard library, this program is a multiplatform? (win, linux)
Or is it also depends on the compiler?
Sorry for my English
thx
As you know, you have to compile your program, then link it. When the compiler encounters something like malloc(), it passes the symbols on to the linker. The linker will find the symbols you need and link them in, provided your make file is configured properly.