Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags
c++ x 18
Member Avatar for praky

I have been asked to implement airline Reservation Simulation system using Data structures as part of B.Tech Minor Project. I have good knowledge of C++ but none of Visual C++ (except how to draw forms). But we also need to implement UI. So we are thinking of implementing UI using …

0
58
Member Avatar for praky

I am writing a code for arithmetic compression. But my problem is i can't open the file 2nd time for reading. code is: [CODE] #include<iostream> #include<fstream> #include<stdio.h> #include<math.h> using namespace std; #define MAX_SYM 255 struct node { char ch; int count; /*public: node() { //cout<<"constructor at work. \n"; count =0; …

Member Avatar for praky
0
88
Member Avatar for praky

An unsigned integer is of 2 bits. What i wnat to do is to shift an int a right one time and at the same time obtain the A(15) bit in some variable how can i do that? i know this will perform a right shift on int a and …

Member Avatar for praky
0
111
Member Avatar for praky
Member Avatar for CrazyDieter
0
70
Member Avatar for praky

There is a header file called BITIO.H in C not a standard header file for bit related input output. Is there is similar different or advanced way in C++ to achieve a similar goal?

Member Avatar for Ancient Dragon
0
49
Member Avatar for praky

I want to know the differences in between two? also is this code equivalent [CODE] char ch; FILE *fin; ch = fgetc (fin); [/CODE] [CODE] char ch; ifstream fin; fin>>ch; [/CODE]

Member Avatar for brandonrunyon
0
420
Member Avatar for praky

I have a string in char a[100]=00110010 which is the ascii code of '2'. Now i want to write this in a text (or binary) file as binary bits. So that when i open the file in binary mode and read a character char ch say via [CODE]ifstream fin; fin>>ch; …

Member Avatar for abdelhakeem
0
104
Member Avatar for praky

i am writing a program on huffman's code in C++. I have wriiten the program till building the huffman tree. now I have to generate the code by traversing the huffman tree. I have no idea how to do that logically. please help with code or algorithm. Here is my …

Member Avatar for praky
0
4K