General C++ Programming - January 2012 (Page 31)

fatal error LNK1104: cannot open file 'mysqlcppconn.lib'
 
Hi am using MS visual VC++ 2008 trying to connect mysql though vc++ code..getting this link error still after setting linker input parameter but now s...
[no replies]
by moot1
game programing
 
hello. do i need to learn anything else before i get into graphics and game programming.here is a program that i use everything i know #include <iostream> ...
[4 replies] Last: First, you'll want to learn how to write your own functions and classe... (by Telion)
Need a good programmer for help
 
Any programmer that is willing to help? I have lots of questions.
[1 reply] : You should probably just post the questions. Even if the list is long... (by Telion)
mySQL with C++
 
Hi guys, I'm experiencing a problem in my project now. How do i actually get a value from my database and insert the data into a variable in my program? ...
[1 reply] : This page http://www.nitecon.com/tutorials-articles/develop/cpp/c-mysq... (by naraku9333)
Help on choosing GUI toolkit
 
Okay,, now here is the thing. I have done C++ console programming for a long time and now want to move on to GUI programming. So I'm confused over which toolkit...
[10 replies] Last: @modoran, yeah, well I too think that wxWidgets will be comfortable fo... (by Pravesh Koirala)
adding SOIL library issues
 
I am trying to use SOIL to add textures to my program using OpenGL. My IDE is Dev c++. I am getting some sort of error about a SOIL function. This is my compile...
[5 replies] Last: -l instructs the linker to link to a library, so -lSOIL instructs to... (by Moschops)
How to convert C++ to binary
 
Hello, i was wondering if there was a way to convert a project written in C++ to binary code for a school project. thank you
[3 replies] Last: That isn't called 'binary code'. This text is in binary format, but yo... (by LB)
Program restores after opening another program
 
Ok, I've made my program and it works...kinda. When it runs, it opens another program, a database of sorts, and does keyboard strokes to input data read from so...
[1 reply] : Paste your code at http://paste.pocoo.org/ and copy the URL here. I do... (by LB)
Problem with finance c++ code
 
Can someone please help me?? I keep getting a debug assertion failed message saying my vector subscript is out of range. Unfortunately i do not know where the p...
[no replies]
Sort not working?
 
Hey, I'm trying to sort a list of objects but keep getting errors due to converting parameters. Heres the code: bool SortThis(Objects & first, Objects & sec...
[2 replies] Last: Your compiler tells you that you try to use a function with wrong argu... (by eypros)
How to use recursion...
 
Can someone please help me with recursion i have no clue how to use it and have never used recursion before suppose you have a M by N grid how do you compute a...
[3 replies] Last: An example : #include <iostream> using namespace std; int fa... (by Michael McCody)
by pkvasu
USING C++ IN ROBOTICS
 
I understand c++quite well and i want to start with robotics using c++. Can anybody help me in learning robotics using c++. I want to make a small robot.
[2 replies] Last: Society of Robots is a good http://www.societyofrobots.com/robot_tutor... (by strongdrink)
C++ Cricket Runs Calculation
 
HI, dears, Can any 1 help me in writing the following program.. i cant do it. so can 1 help me. > Write C++ program that calculates the following Total Runs...
[2 replies] Last: PLEASE START WITH YOUR HOME WORK AND LET US KNOW WHERE YOU ARE STUCK .... (by bluecoder)
Beginner's question: Dynamic array size and dynamic memory
 
Hello everybody, I gained all my knowledge about C++ from this webside's tutorial and I am somewhat still confused why this would not work: int x; cin >> x; i...
[2 replies] Last: in the first code .. array needs to have the constant size as . #defi... (by bluecoder)
defaul value class for template
 
I wonder if I can make a template with a default value for a class of mine, as follow: class MyClass { .... } template<class T = MyClass> class Clas...
[3 replies] Last: what is your full code .. i would like it to try .. (by bluecoder)
Beginner's question: Pointers and scope of variables
 
Hello everybody, I wonder if this is something you are allowed to do in C++: { int *x; { int y = 10; x = &y; } ... cout << *x; } My concern: As far...
[1 reply] : Your understanding is correct: the object y is destroyed at line 6. Th... (by Cubbi)
by sofi11
understanding an email server name
 
I am creating a simple email sending program using winsock but I cant understand how am I suppose to get the email server's name. For example if I want to send ...
[4 replies] Last: so if you have the email address "someuser@comcast.net" you can do thi... (by Texan40)
Doubt about operator overloading << as a friend function
 
Hey guys! I have a small doubt regarding the overloading of the << operator for a simple class as a friend function. Consider the example below: class So...
[2 replies] Last: The idea of making it friend is that you don't need to provide the cla... (by ne555)
Recursive Merg Sort c++
 
I'm trying to do Merg sort recursively. But the problem is, i am unable to find out the base case when i split an integer array in to sub arrays. Below is my th...
[no replies]
Programming problem
 
How can two gangsters who have never met before identify each other when they meet to exchange stolen goods? One technique that we see in movies is to tear a...
[3 replies] Last: The only help that I can give you is that a single set is enough to de... (by Pravesh Koirala)
January 2012 Pages: 1... 2930313233... 36
  Archived months: [dec2011] [feb2012]

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