I have a question about binary source code on Windows.
#include <stdio.h>
int main()
{
printf("Hello, world!\n");
return 0;
}
The same source code that I compiled twice on Windows (VS 2008 Cmmand Prompt: "CL"), but I have different binaries.
cl new.cpp
Can you guys tell me why and how to avoid this?
source
share