Posts
 
Reputation
Joined
Last Seen
Ranked #105
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
88% Quality Score
Upvotes Received
58
Posts with Upvotes
48
Upvoting Members
39
Downvotes Received
9
Posts with Downvotes
7
Downvoting Members
6
33 Commented Posts
2 Endorsements
Ranked #630
Ranked #230
~222.02K People Reached
About Me

Everything remains a dream untill someone dares to convert it into a reality !!!

Interests
Coding, Puzzles, Math, Painting, Hanging out with friends
PC Specs
Dell XPS Laptop i5 Processor 6 GB Ram running Dual boot Windows 7 and Ubuntu 11.04
Favorite Tags
c++ x 308
c x 232
text x 2
seo x 2
Member Avatar for paruse

I'm a beginner in C++. I saw \b and \r in a program source code. I've seen \n and I know its purpose. But why do we use \r and \b in C++? Please clear my doubt. Thank You.

Member Avatar for Shafiq_1
0
37K
Member Avatar for skandh

how to display 256 color bmp files in trubo c++ 3.0??? i ve already displayed a 16 color bitmap in turbo c++... i came across this code but it doesnt work...pls tell me whts the error... [code] #include<iostream.h> #include<graphics.h> #include<fstream.h> #include<conio.h> struct A{ char type[2]; /* Magic identifier */ unsigned …

Member Avatar for jay.vivarekar
0
1K
Member Avatar for baconswife

I am writing a program that outputs whether or not a number is prime. Can anyone help me find where my syntax error is? Also, i get that i = 3; i <= num; i++ would be true for it being a prime number from the other forums I have …

Member Avatar for Mahfuz_1
0
191
Member Avatar for bemo55

I have a project for school that i am working on, and i cant figure out how to store names in an array. i have it declared as [code] char firstname[25]; char lastname[25]; [/code] but i was told that just stored one string and when i go to print out …

Member Avatar for jcmoney1010
0
9K
Member Avatar for Eagles36

I have the program working up to the point where at the end of every test it fails and get. where do I need to look to start fixing the failed tests.(files are attached at the bottom) This is my output: START OF TEST 1: Testing insert, attach, and the …

Member Avatar for uzairrahim
-1
2K
Member Avatar for wzseow

Can someone guide me how can I use scanf for a structure? [CODE]const int IDLEN = 30; const int POLARITYLEN = 3; const int MAXSTOCKITEMS = 10; struct TransistorRec { char manufacturersID[IDLEN]; char polarity[POLARITYLEN]; float power; float gain; int stock; }; typedef struct TransistorRec Transistor; struct StockRec{ int size; Transistor …

Member Avatar for zeroliken
0
20K
Member Avatar for Gaiety

Hi, I have recently gone through some C internal stuff, addressing schemes(logical,relocatable and physical). what i dint get here is how are these inter-related.I do understand that these three are genearated by different tools. I want to know how exactly one is useful for other in executing the program in …

Member Avatar for Gaiety
0
151
Member Avatar for kusel1030

I'm trying to write a program that will read in a file to a 2-d array and find out how many groupings (blobs) of characters there in the file. It then uses a recursive function to delete the already counted blobs, to avoid recounting. The program compiles fine, but when …

Member Avatar for kusel1030
0
590
Member Avatar for lothrodel

As I stated in the title i am having the issue where the object 'bj' does not call any of the functions that are within the class. I am stuck on this issue. Any help will be a appreciated. Thanks in advance. [CODE]#include <iostream> #include <cstdlib> #include <ctime> #include <string> …

Member Avatar for csurfer
0
149
Member Avatar for adkool
Member Avatar for ahasan_al_rabbi

I am using a image slider in my page. but sliders moves to fast. I want it's will be move slowly. so help me.

Member Avatar for ahasan_al_rabbi
0
167
Member Avatar for cppgangster

Hi started learning c from book "let us c". I noticed that I can't find string unformated functions such as putch,putche or stricmp? Are these funtcion are part of standart?

Member Avatar for abhimanipal
0
120
Member Avatar for littleleaf

Hi all, I am constructing a program on TCP sockets. The server should be able to accept connections from more than 1 clients. My programs seem working fine when accepting connections. Now the problem is: when I try to terminate one of the client programs, the server program would also …

Member Avatar for littleleaf
0
416
Member Avatar for SourabhT

[CODE] #include "stdafx.h" #include<iostream> using namespace std; class Shape { public: virtual void fun() { cout<<"in base"<<endl; } }; class Square:public Shape { public: void fun() { cout<<"in Square"<<endl; } }; class Circle:public Shape { public: void fun() { cout<<"in Circle"<<endl; } }; int _tmain(int argc, _TCHAR* argv[]) { Shape …

Member Avatar for arkoenig
0
695
Member Avatar for ragnarok511

I am currently a C# developer with about a year of experience. I am currently working on finishing my computer science degree with a minor in mathematics. I love the job that I am in, but I the things I really want to do are in C++ (i.e. game development, …

Member Avatar for thelamb
0
235
Member Avatar for LanguidLegend

Hi, I was wondering if someone could help me with an issue I'm having in my code. [ICODE]#include <stdio.h> #define SZ 7 int* a[SZ]; int x, y, z; void populate() { x = 1; y = 2; z = 3; a[0] = &x; a[1] = &y; a[2] = &z; a[3] …

Member Avatar for csurfer
0
173
Member Avatar for rogba

right now my program asks for 5 candidates but i want to make the user input as many candidates as they want to. how would i go about doing that?? #include <iomanip> #include <string> using namespace std; int sumVotes(int list[], int size); int winnerIndex(int list[], int size); int main() { …

Member Avatar for rogba
0
155
Member Avatar for atticusr5

hello all, I am writing a program to test sorting times, and I am having trouble with my quick sort. essentially, my quicksort is not sorting and I am having alot of trouble with it. Does anyone see any real problems with my implementation? Thanks! [CODE] //-------------------------------------------------------- void quicksort(name_t *&charArray, …

Member Avatar for geojia
0
147
Member Avatar for sheri khan

please any one give me the code of this program using nested for loop * ** *** **** ***** please see attachment for correct question

Member Avatar for csurfer
0
68
Member Avatar for SWEngineer

I'm new to [B]Qt[/B]. What resources do you recommend for learning Qt? Thanks.

Member Avatar for SWEngineer
0
224
Member Avatar for skald89

Should a web designer hand over? -pdf -pdf with notes -html and css -html,css, and pdf -html.css.and pdf with instructions -psd -something else Please help me out because I am very confused about what a web designer should be doing.

Member Avatar for skald89
1
172
Member Avatar for fradiavolo

Edit : Broken from this thread. [url]http://www.daniweb.com/software-development/cpp/threads/35587/175186#post175186[/url] Hello. I got the same problem. But i need to read the string table from a file. I must use a 3d table? The table in the file must look like this: [CODE] A B C D E A QX FN LB YE …

Member Avatar for Greywolf333
0
151
Member Avatar for ispeakbinary

I am trying to create a class for doing number factorization on a random number, so I need to create a pointer to store the factors of the number. But when I compiled it, I got an error. My question is 1)What did I do wrong? I have a feeling …

Member Avatar for csurfer
0
155
Member Avatar for karan_kanna

Write a program in c++ that read two files A.txt and B.txt, and find all words which are in file A.txt but not in file B.txt. Input: A file containing large text. The file may contain any number of words.

Member Avatar for csurfer
0
102
Member Avatar for ravish_26490

[B]I've tried out suggestions from several posts related to BGI Error (on daniweb n innumerable sites)but it just doesnt get solved.. Whenever i try to execute (after compiling successfully) a graphics program it either exits out of C and into DOS mode or it gives an error "The NTVDM comp …

Member Avatar for niran manandhar
0
1K
Member Avatar for erictham83

how to write a program for raising a number to a power(integer only) (e.g 2^2=4 ; 3^3=27 etc) [COLOR=Blue][B]without [/B] [/COLOR] using a precompiled C function(ie pow()). [COLOR=Blue][B]but [/B] [/COLOR] only used addition, substraction, while loops,if statement and/or for loop.

Member Avatar for shiva_202
0
391
Member Avatar for Dionysus

hi I was wondering if anyone knows how to create a dictionary using ANSI C. I really Dont know where to start...any help is appreciated... Thanx in advance

Member Avatar for Adak
0
725
Member Avatar for serkan sendur
Member Avatar for sadia.ab

plz help me in programming the proble sttement is as Problem Statement: Calculating No. of A Grades in Class You are required to write a program which should take input from user in the form of characters A or B. Based upon user’s input you should calculate no. of A …

Member Avatar for jonsca
0
148
Member Avatar for karthikdebbadi

Hi all, I am very much new to any forum or discussion.I am working on C++ on ubuntu. My problem is I have to transfer a file from my domain to a remote server which maintains these files using sftp which is provided by my linuc machine. I am not …

Member Avatar for karthikdebbadi
0
257