I added includes from VC98 , and create new project.. So, I have new error
> polink.exe -machine:x86 -subsystem:console -safeseh kernel32.lib advapi32.lib delayimp.lib -out:"D:\oop1.exe" D:\output\oop1.obj
POLINK: warning: Section '.gfids$y' is not supported; ignored.
POLINK: fatal error: File not found: 'libucrt.lib'.
So, I delete #include <stdio.h> and add option NODEFAULTLIB (ignore standart places) , and it work! Thank!
But why can not I use the CRT? Is this normal for C++ or am I having an error?