On my forum I go to we were talking about how some peoples C++ hellowords were 10x larger than the C version.On my GCC and G++ there is no difference but on some of theirs there is a huge one.If any of you wouldn't mind could you compile
C
#include<stdio.h>
int main()
{
printf("HelloWorld\n");
return 0;
}
and C++
#include<iostream>
int main()
{
std::cout<< "HelloWorld\n";
return 0;
}
and post both sizes and which compiler was used to do this test.