# Huge C++ Filesizes

**URL:** https://forum.kirupa.com/t/huge-c-filesizes/122355
**Category:** Uncategorized
**Created:** [September 13, 2004, 4:02am UTC](https://forum.kirupa.com/t/huge-c-filesizes/122355 "2004-09-13T04:02:06Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Yeldarb](https://avatars.discourse-cdn.com/v4/letter/y/51bf81/32.png) [@Yeldarb](https://forum.kirupa.com/u/Yeldarb)
#### Post date: [September 13, 2004, 4:02am UTC](https://forum.kirupa.com/t/huge-c-filesizes/122355/1 "2004-09-13T04:02:06Z")

</div>

I downloaded Borland C++BuilderX today to use for messing around in C++, but it seems that the .exe files it produces are huge. For example, the following code is over 250 kb.

```auto

#include <iostream.h>
int main() {
  int name;
  cout << "How old are you? ";
  cin >> name;
  cout << "Wow, " << name << " years old huh?" << '
';
  cin.ignore(80,'
');
  cout << "Press [Enter] to continue";
  cin.get();
  return 0;
}

```

Does anyone know of a default setting that would be causing this or something else maybe?
