Thursday, 23 February 2017

Reading All ASCII(with Extended 0-255) Character to a Binary file Using C++

#include<bits/stdc++.h>
using namespace std;
int main()
{
    ifstream myfile ("compress.bin", ios::binary);
    for(int i=0; i<256; i++)
    {
        unsigned char c ;
        myfile.seekg(i);//position of the character in the file
        myfile.read ((char*)&c, sizeof (c));
       cout << c;
    }
    cout << endl;
    return 0;

}

No comments:

Post a Comment

ট্রিগার এর মাধ্যমে ডাটা ইনসার্ট - insert data using Database Trigger (Mysql)

সর্বপ্রথম আমরা প্রবলেমটা বুঝিঃ আমি একটা টেবিলের একটা কলামের ভ্যালুর উপর ডিপেন্ড করে আরেকটা কলামে ডাটা insert করব । এই কাজটা ট্রি...