General C++ Programming - November 2010 (Page 16)

problem facing with vector in c++
 
typedef struct node { int data; node(int x) { data = x; } }node; typedef ...
[2 replies] Last: got ur point jsmith.... thanks ............. (by mohitgoyal557)
Template Member function specialization
 
Hi guys, I am implementing some rotation algorithm for medical images and I was wondering if it ...
[3 replies] Last: Yes I have already implement a rotation algorithm with billinear inter... (by Silvermaul)
Run time error in mlock.c
 
I have one Node parent class in Node.h and two children that inherit from Node, Sense and Word in Se...
[1 reply] : I have not looked at the code in detail, but at a quick glance I can s... (by jsmith)
None dos prompt program using C++
 
I asked a ? earlier and want to refine what i ment. Backround, i come from a PLC programming back...
[2 replies] Last: Your question was answered in your previous thread http://www.cplusplu... (by Bazzy)
Counts words in a string (1,2)
 
I am trying to count the number of words in a string. Right now I have some code that works, but it ...
[29 replies] Last: #include <iostream> #include <fstream> #include <string> #include ... (by lukelee1987)
need solution on count word in C++
 
need help .. below is my code ...!! #include <iostream> #include <fstream> #include <string...
[3 replies] Last: i need help on this area. size_t count_words(const std::string& s) ... (by lukelee1987)
why "error - not declared in this scope"
 
Hello, I'm new to C++ and found a snippet of code online that I was trying to modify for my own u...
[1 reply] : const vector command(string cmd) should be: const std::vector<std:... (by kbw)
doubly linked list
 
i want to create doubly linked list with head pointer only. i.e. i want to add nodes at start of dou...
[5 replies] Last: like i said: [quote=coder777] if(top) top->precede=temp; without... (by coder777)
Unresolved external symbol errors!
 
Hi all, Does anyone know how to solve these errors? 1>PocoFoundationmt.lib(Process.obj) : e...
[7 replies] Last: That looks fine to me. Did you double check the linker settings on ... (by kbw)
Matrix - Frequencies
 
Hi everyone, I'm recently in C++ and I would like to develop one C++ code that read a file ".txt"...
[1 reply] : Very interesting. Is there a question in there somewhere? =P (by Disch)
c++ STL and result output
 
Need help on the question below: 1. which STL can allow us to count the word's occurrence and so...
[no replies]
by mintz
my program wont run..what are the errors?
 
#include <iostream> #include <iomanip> using namespace std; //global constants, global variable...
[2 replies] Last: i've tried but i dont understand the errors (by mintz)
by mking
Seg Fault in PreOrder Traversal of Tree
 
Hello, I have a complete program that compiles however there is a seg fault i cannot find a reason f...
[no replies]
looking into arrays and rearranging from highest to lowest, possible?
 
is there a simple way to look into an array with a bunch of stored numbers and rearrange itself from...
[4 replies] Last: // Here is a slightly different syntax for doing the same thing. You... (by kempofighter)
Trying to determine how long it takes to run program using some time function
 
My program uses a hash to find matches between two files. My problem is that i need to figure out ho...
[3 replies] Last: That reminded me about this link of links: http://www.cplusplus.com/f... (by kbw)
R-Value?
 
Have a problem I could use some clarifications on, if possible. My teacher assigned a project, we...
[13 replies] Last: :-) (by Duthomhas)
Draw Rectangle onto NULL
 
I'm sure this is existent somewhere, but I didn't know what its called... So I'm posting. I'd lik...
[6 replies] Last: Er, well, I suppose you could have a global cursor hook and draw direc... (by Duthomhas)
operator overloading in struct
 
I came across the following piece of code: struct inter { int begin; inline bool ope...
[4 replies] Last: Thanks a lot, Disch! :) (by nguyentrang)
Stuck with Writing a C++ Candyland game
 
I've been assigned to write a candyland game in which there are 85 squares. The game just couts a ta...
[5 replies] Last: Care to explain a little on switch statements? We haven't learned thos... (by skatingrocker17)
Memory Leak in LinkedList variation
 
*edit* Fixed a problem, created another problem, sorry disregard.
[no replies]
November 2010 Pages: 1... 1415161718... 21
  Archived months: [oct2010] [dec2010]

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