I just compiled a simple console program in C++.
These are the includes:
The program is not more than 150 lines, I compiled it and I got a 528 KB exe!?! What the!? :eek: :confused:PHP Code:#include <vector>
#include <iostream>
#include <conio.h>
using std::vector;
using std::cout;
using std::cin;
using std::endl;
