Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~657 People Reached
Favorite Forums
Favorite Tags
c++ x 9
c x 3
Member Avatar for Lutzee

Hai, This is something to save me and osme other people some time. Basically i need to read data from a text file and put that data in a a web form. It will be easy to read the text file but I don't know how to stuff that information …

Member Avatar for Ancient Dragon
0
82
Member Avatar for Lutzee

Hi there everyone. I wonder if you could help me with my code. It just seems to go into an infinite loop. I would greatly appreciate some help with this. Thanks [CODE]#include<iostream> using namespace std; int qsrt(int array[], int first, int last) { int over = 0; over = first-last; …

Member Avatar for ndeniche
0
94
Member Avatar for Lutzee
Member Avatar for Ancient Dragon
0
46
Member Avatar for Lutzee

Hi, it's me again lol... Ok i havea windows forms application. I have several classes with pointers to other classes eg: [code=c] class1 { public: function(void); class2* c2; }; class1::function { c2->variable = 3; return 0; } [/code] I think form1 is an object, maybe this is cos i'm a …

0
60
Member Avatar for Lutzee

Hi guys i'm tyring to delete some elements from a vector. I am trying to delete from 0 to k-1 and from k to the end. That means in theory that only element k should remain. 1) cell[i][j].erase(cell[i][j].begin(),k-1); 2) cell[i][j].erase((cell[i][j].begin()+k+1),(cell[i][j].end())); line 2 does not give me an error, however line …

Member Avatar for ~s.o.s~
0
81
Member Avatar for Lutzee

Hi there, im a c++ noobie. I have a class called node. Node has a data member id. When i try and access id in the obect named f outside of main visual studio 2003 gives me the errors: : error C2065: 'f' : undeclared identifier error C2228: left of …

Member Avatar for Salem
0
112
Member Avatar for becki

hi every one, im working on a program to convert the binary number system to the decimal one. I have the code yet im wondering if it a while loop can be used instead of a for loop. i have major problems trying to work out for loops, stupid me! …

Member Avatar for WaltP
1
182