Beginners - June 2011 (Page 17)

Question!
 
Hi, i am new to C++ although i know few programming languages and i was wondering how do programmer makes stuff like this http://i867.photobucket.com/albums/...
[2 replies] Last: Would it be hard to learn because it looks like fun program to code! (by silentcoder)
Resizing the window
 
I would like to resize the window with c++ code, if thats possible. Thanks!!! btw I am using dev c++ and the c++ program looks like a dos batch program.
[1 reply] : you're going to have to tell us more I'm afraid, we don't know what pl... (by quirkyusername)
by DouDou
Dynamic Array Size
 
Hello, I am new to C++ so my appologies for the silly question. I have a question about dynamic arrays. In Savitch Absolute C++, it is mentioned that one o...
[3 replies] Last: Thanks for the replies. I have mentioned, it is impossible to knwo the... (by DouDou)
Urgent: C++ Webservice call
 
Hi Guys I have a small piece of C++ code which is used as a plugin in my product. I just need to compile this piece of code and put the .so file in my main pro...
[5 replies] Last: I'm sorry for the confusion. Previously the .so file was deployed on L... (by abhi2807)
ifstream question
 
hi, i was wondering if it's possible to use ifstream to read a file and ignore a X number of words. i.e: say i have a text file with the words "Hello Mr. ...
[7 replies] Last: thanks for the help, but it seems that i have ran into a new problem. ... (by katakotter)
linked list student structure
 
Please explain me the logic behind linked lists and how to insert at head and end?. I have spend at least 3 days on this and still i have been unable to grasp i...
[no replies]
Primes between Limits
 
hey, I have been trying for a looong time to write a program to print out all the prime numbers between two given numbers. I have tried out alot of different me...
[3 replies] Last: By bool function, you mean bool IsPrime(int Number)? You could have do... (by GisleAune)
by Audie
getline for C-strings
 
I'm working on a problem in a chapter that's about C-strings, strings, and vectors. It seems the problem wants me to solve it using a C-string or two since it's...
[5 replies] Last: Yes, ideone.com is heaven! No more will I stuff my hard disk drives w... (by webJose)
Strings
 
Hi guys, I'm currently writing a program for my girlfriend. I'm aiming at a very user friendly program, but I'm not 100% confident with strings, so I'm going t...
[2 replies] Last: Thanks heaps dude, easy as that :D (by Danielsta)
by ELoken
Looking for a good quant-oriented c++ book.
 
Hi, I'm about to enter a graduate course in mathematical finance and I'm looking for a book about C++ applied to this field. I have found a few on the web, b...
[7 replies] Last: If i was you I would consider "C++ without fear" it is really helpful ... (by npanagakis)
by Brayan
How can I set object on the bottom of window...
 
Hi, I have to do a project for school, and I'm stuck... I need to put some objects on the bottom of window...but it needs to be always on the bottom, when you ...
[4 replies] Last: I can't really change it for this project...I was thinking more about ... (by Brayan)
by hhung
Creating new objects in call to base class constructor from derived class
 
Hi, I have a derived class SpecialCalc which inherits from base class Calc as follows: struct Calc { Calc(const someRef& thisRef) { // ...
[1 reply] : Nevermind, figured it out. struct SpecialCalc : Calc { ... (by hhung)
by snakec
c++ multilevel inheritence
 
Hi I'm trying to learn multilevel inheritance in c++ i write a following code: code : #include<iostream> using namespace std; class student { pro...
[3 replies] Last: [quote=I]http://www.cprogramming.com/tutorial/initialization-lists-c++... (by hamsterman)
Singly Linked List Question
 
Just starting to learn about linked lists, and I need to enter a last name and a GPA as a char and float respectively into a node, and then sort the list in num...
[5 replies] Last: If you prefer to stay with your version at least use the swap template... (by onur)
by CStu
A CD Program (Last program)
 
Hey guys, this is my last assignment of the year. My grade in c++ isn't that good and I just want to finish this program completely so I can bump up my grade a ...
[4 replies] Last: Hi, just found this post! Perhaps you can tell if you did well, or no... (by DarkGecko78)
C++ - Accessing Private Variables
 
I had a c++ project due today. I definitely got an F on it. The main reason behind that was that one of my methods wasn't functioning properly. I had a private ...
[5 replies] Last: If you want to modify the object that is being passed, then yes. If yo... (by Zhuge)
by snakec
c++ very basic problem
 
hi I'm just learning the c++ . I have following doubt . I write a simple code but when i compile it shows errors . my code is following: code : #include<io...
[5 replies] Last: What the hell? My post time moved ahead ten minutes and is now ahead o... (by closed account S6k9GNh0)
by snakec
c++ const key word
 
hi I'm new to c++ . can anybody explain me the following code line code: class xx2: public xx { public: x* create x(x& con) const { return...
[2 replies] Last: Thanx for explaining the concept (by snakec)
Magic Square
 
class Magic_Square { private: int Size; // Number of rows and columns in the Magic Square array int MagSq ; // Magic Square matrix ...
[1 reply] : I think it's a good idea to work on raising your skill level. (by Athar)
by snakec
c++ constructor related question
 
hi I'm quite new to c++ I just write the following code : code: #include<iostream> using namespace std ; class time { int hour; int min; public...
[7 replies] Last: It was a problem of complier ? the complier does not allow us to make... (by snakec)
June 2011 Pages: 1... 1516171819... 41
  Archived months: [may2011] [jul2011]

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