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
~205 People Reached
About Me

I'm a student at the Divine Word University in Papua New Guinea, Madang. I like programming its cool and fun...

Interests
Software enginer
PC Specs
Not much but Im good with Windows.. I really like Linux.
Favorite Forums
Favorite Tags
c x 1
c++ x 1
Member Avatar for Pugee

Creating a simply data base to store these variavles. The three entities are book, brower and Records. Using these we will create a simple database from dev c++.

Member Avatar for deceptikon
0
99
Member Avatar for Pugee

[CODE]//Converter //Thursday 25 2010 7:16pm #include <stdio.h> #include <stdlib.h> int main () { int i; char buffer [33]; printf ("Enter a number: "); scanf ("%d",&i); itoa (i,buffer,10); printf ("decimal: %s\n",buffer); itoa (i,buffer,2); printf ("binary: %s\n",buffer); system("pause"); return 0; }[/CODE]

Member Avatar for WaltP
0
106