No Recent Activity

4 Visitor Messages

  1. // reading a complete binary file
    #include <iostream>
    #include <fstream>
    using namespace std;

    ifstream:os_type size;
    char * memblock;

    int main () {
    ifstream file ("example.bin", ios::in|ios::binary|ios::ate);
    if (file.is_open())
    {
    size = file.tellg();
    memblock = new char [size];
    file.seekg (0, ios::beg);
    file.read (memblock, size);
    file.close();

    cout << "the complete file content is in memory";

    delete[] memblock;
    }
    else cout << "Unable to open file";
    return 0;
    }
  2. View Conversation
    Prove to me u can code.
  3. View Conversation
    Lol sorry 22post's but i can
Showing Visitor Messages 1 to 4 of 4
About nicksplat2

Basic Information

About nicksplat2
Biography:
starter at c++ normal at python
Location:
singapore
Interests:
making hacks but its too hard
Occupation:
high school student
Blog:
nicksplat77.*********
What are you here for?:
finding hacks,making hacks keep website safe
Gender:
male
Flag:
Singapore

Statistics


Total Posts
Total Posts
63
Posts Per Day
0.01
Visitor Messages
Total Messages
4
Most Recent Message
06-15-2011
Total Thanks
Total Thanks
8
  • Thanked 6 Times in 4 Posts
General Information
Last Activity
05-11-2022
Join Date
03-11-2011
Referrals
0
Post Areas

Top Areas Of Posting