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
~305 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Nasas

Can u help me guys. I have problem of calling function from class and overloading. When I'm trying to print short int type number, the program brakes down. No errors are shown which tell me whats wrong. [CODE]#include <cstdlib> #include <iostream> using namespace std; int i=0, j=0, zero_fill, l=0; class …

Member Avatar for Nasas
0
134
Member Avatar for delifion

#include <cstdlib> #include <iostream> using namespace std; int i=0, j=0, zero_fill, l=0; class dec_to_bin { public: char bin[33], rev[33]; char *to_bin(unsigned int dec, int size); char *to_bin(unsigned short int dec, int size); }; char *dec_to_bin :: to_bin(unsigned int dec, int size) { while(dec > 0) { bin = dec%2+48; dec …

Member Avatar for Nasas
0
171

The End.