Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~2K People Reached
About Me

Hi, I'm from Sri Lanka and I'm here to discuss Computer stuff. I like computer stuff a lot and I was even reading about computers before actually use one for real. Currently I'm following a computer course and studying about C++. I'm reading a book about…

Interests
Movies, Bike riding, Rock,
PC Specs
OS :Ubuntu 10.4 Motherboard : Intel DG35EC Processor : Intel Q6600 RAM : DDR2 2GB Hard Disk : SATA II…
Favorite Forums
Favorite Tags
Member Avatar for Sinaru

You can use the following class to align text such as paragraphs to be centered, right, or left on a console. Also it supports some more methods. I have written this so it will be helpful for some and also for me. I'm not that pro so have wasted a …

Member Avatar for Sinaru
0
166
Member Avatar for Sinaru

I have two classes and one of them is inherited from the other class. Class Person - used to store first name and last name of a person. The data members are protected. Class Candidate - used to store votes of an election, and this is inherited from Person class …

Member Avatar for arkoenig
0
159
Member Avatar for Sinaru

Take a look at this program. [CODE] #include <iostream> using namespace std; struct Node { int data; Node* link; Node() { data = 0; link = NULL; } }; void destroy(Node* &p) { Node* pre; while(p !=NULL) { pre = p; p = p->link; delete pre; // When running for …

Member Avatar for manojwali
0
581
Member Avatar for Ayaat Monem
Member Avatar for abhimanipal
0
272
Member Avatar for Sinaru

I wrote this code for fun. Wanted to do such a thing so that I would be able to use this in the future. I'm kinda new to this forum. I like to know what you think about the code. If can point out some mistakes or ways to improve …

Member Avatar for mrnutty
1
180
Member Avatar for Sinaru

I have a fingerprint reader on my hp pavilion laptop. I want to use it to identify users for a security application. Can anyone suggest me a framework or a SDK to do that?

Member Avatar for kvprajapati
0
79
Member Avatar for Sinaru

About a month ago, when I turn on the computer the screen was like a broken old TV screen. Broken lines were going all over the screen. I could barely read anything or do any work. Less than an year ago I brought a Nvidia graphic card and it was …

Member Avatar for hotmatrixx
0
126
Member Avatar for Adrhian77

how to create asterik star like this [B][COLOR="Red"]>[/COLOR][/B] with 10 Asterik star (*)

Member Avatar for Nick Evan
1
99