General C++ Programming - November 2012 (Page 38)

Remove words from a string
 
EDIT: So I started with removing stopwords form a string, but rather than editing the string itself,...
[7 replies] Last: Note: std::binary_search() requires that the sequence is sorted. Us... (by JLBorges)
Exception in Constructor?
 
if i have this: class Number { private: int x; public: Number(int _x):x(_x) { if (_x =...
[4 replies] Last: It would be something like this: #include <stdexcept> class Number {... (by Cubbi)
Bubble Sort
 
So many of us have all done bubble sorts, however, I am new to c++ and this code is just not seeming...
[no replies]
by lasog
Abot Banking System Need Help
 
Banking System - Problem Description A bank wants a computer system to help administrator bank accou...
[no replies]
by jkfde
Need help On Project
 
I have to write a program that find the biggest and smallest number in an array. Here is Source Cod...
[2 replies] Last: the values of the array are unknown, that's why theirs random number g... (by jkfde)
by fauxq
From VB to Cpp. Newbie in need of help!
 
I have been working on this program for a few days now. I am very new to C++, and as you will probab...
[no replies]
Type INT
 
is there a way to compare a variable to an int without having to type if(i = 1 || i == 2 ... etc?
[4 replies] Last: I hope this isn't homework :) #include <iostream> #include <string>... (by SamuelAdams)
Interrupting a constructor
 
Hi, While writing a code, I just thought if this is possible. Say in a copy constructor (or an...
[1 reply] : I don't think this is possible, but I don't really understand what you... (by Zhuge)
Need Help on my project
 
hello, i'm very confuse about my project. anyone can help? #include <iostream.h> #include <conio.h...
[5 replies] Last: still not work correctly -_- (by aralight)
skip
 
#include <iostream> #include <cmath> using namespace std; int main() { int n,num,i=0,a,b,c,...
[2 replies] Last: Thank you very much,but how can my output be ? 1-2, 3-4 1-2, 3-5 1-2, ... (by sabbir366)
QString::fromAscii()
 
Please how can I use this line of codes in C++(not in Qt)? QByteArray responseData = QByteArray::f...
[no replies]
linked list
 
hello.. i take a data structure class and our teacher gave us an assignment about single linked list...
[4 replies] Last: thank you so much it works well now!!! :D :D (by lulu girl)
How do I verify two letters
 
Hey guys so basically I'm reading text from a file well like a menu type. Everything is good now th...
[6 replies] Last: This is what you need http://www.cplusplus.com/reference/stl/map/ (by Cheraphy)
Can't Figure this out, Please help
 
I've been working on this Infix to Postfix for a couple weeks, and I can't seem to figure out why it...
[no replies]
by BandK
Sort...
 
I sorted by merge sort int array (this int array is part of struct)...if 2 or more ints are equal ho...
[no replies]
C++ Understanding Constructors
 
I have successfully gotten the info to print out in the correct order. However, I cannot figure o...
[5 replies] Last: By the way these statements are invalid Animal a(); ... (by vlad from moscow)
by BandK
Merge sort...My problem
 
I have linked list and struct like this... struct list{ float price; float password; ...
[no replies]
by LB
Circular dependency w/ class typedefs
 
struct A { typedef /**/ X; typedef B::X Y; }; struct B { typedef /**/ X; ty...
[1 reply] : So there's no way? (by LB)
deque =why elements not changing?
 
//why are actions of ActionB, ActionC not effecting the elements vecP? see end of main. #include...
[6 replies] Last: defining vecP &psn =*itr; fixed the problem, thanks (by drshaheen)
November 2012 Pages: 1... 3637383940... 51
  Archived months: [oct2012] [dec2012]

This is an archived page. To post a new message, go to the current page.