
please wait
by Eddie Risto
In what order does the console read the code?
|
Hey guys. Second post :D So, I have a question. I'm about a week into this whole C++ nonsense, and I'm beginning to see something I didn't expect. As far as ... |
May 20, 2013 at 11:10pm
[1 reply] : The code is read from left - > right from top - > bottom. Try this fo... (by giblit)
|
by tractorboy
Beginner question
|
Hi, Sorry I'm trying to work through some of the beginner problems which are posted here http://www.cplusplus.com/forum/articles/12974/ I'm doing the "Bracket... |
May 20, 2013 at 10:53pm
[3 replies] Last: Ok, I found this http://www.cplusplus.com/reference/cstdlib/rand/ th... (by tractorboy)
|
by base evil
Question pertaining to <xiosbase>
|
While using Microsoft Visual Studio 2010, there's a class _Iosb within <xiosbase> // TEMPLATE CLASS _Iosb template<class _Dummy> class _Iosb { // define ... |
May 20, 2013 at 10:38pm
[3 replies] Last: Edit: On re-reading, the post I thought might be interesting (now belo... (by andywestken)
|
by smkl
Ampersand differences
|
Hello, I am very new to C++ and am just learning. If I were to declare variable as this: int a = 7 int b = 6 int* c = &b This would simply mean t... |
May 20, 2013 at 8:33pm
[2 replies] Last: This would simply mean that c = 6, correct? c has a reference to b. ... (by Peter87)
|
by kabuki
Help with strlen
|
So I created a box of asterisk so that I can output my data into so it'll look something like this ************ * * * * * * ... |
May 20, 2013 at 6:02pm
[2 replies] Last: Thank you for sending me the link. It did solve my problem. (by kabuki)
|
by freshd27
c++ quetion 2
|
Write your question here. Write a short program that reads three non-zero integers from the user input and determines whether the values could be the sides ... |
May 20, 2013 at 5:45pm
[5 replies] Last: No, it is a bad idea to remove posts. (by vlad from moscow)
|
by freshd27
c++ quetion
|
Write your question here. C++ i need this answer asap Fix all syntax error in this program. Submit the correct program and clearly state which lines had p... |
May 20, 2013 at 5:28pm
[2 replies] Last: Where is the question? Seems like you need to do your own exam or do a... (by giblit)
|
by BillWang
Asterisk and pointer conversion
|
Hello, all I am pretty new to C++ but have some experience with Java and other programming language. Currently I am having some problem with the the asterisk an... |
May 20, 2013 at 4:51pm
[6 replies] Last: I created a .h with what I need. (by BillWang)
|
by Vigii
How to find the difference between each iteration level
|
Hi, I'm writing a code for a type of numerical method solution. I got stuck at a point of implementing the check expression while the iteration is carried ou... |
May 20, 2013 at 4:44pm
[2 replies] Last: If the difference value of n+1 iteration and n th iteration is equal t... (by Vigii)
|
by beeraka
syntax for passing parameter data at execution time in executesql
|
// Open the database database.Open(NULL,false,false,sDsn); // Allocate the recordset CRecordset recset( &database ); CString text; //Ge... |
May 20, 2013 at 3:13pm
[2 replies] Last: it also makes it easier to respond to your post. In particular, tag... (by andywestken)
|
by Gaxt
How to sum ?
|
Hi guys . I'm new here and I'm kinda new to programing . I'm trying to complete the task from the book , I done something so far , but I ran into a problem. How... |
May 20, 2013 at 2:54pm
[4 replies] Last: indeed. see my post. (by mutexe)
|
by agnophilo
Some code I don't understand.
|
I was reading through C++ interview questions to quiz myself and look for new concepts to research and I found this question: "Write a short code using C++ t... |
May 20, 2013 at 2:54pm
[4 replies] Last: There are two ways to check whether a number is even or odd. The first... (by vlad from moscow)
|
by Vigii
Plotting Graphs and contours
|
Hi Everyone, I'm a beginner to C++. I need some help in plotting my array which was my end result of my program and have to make a contour with the arrays ob... |
May 20, 2013 at 2:30pm
[3 replies] Last: https://www.google.co.uk/search?q=graph+plotting+with+c%2B%2B&rlz=1C1S... (by mutexe)
|
by JayRyGeo
Pointers and Dynamic memory
|
This is a question about a homework problem and before anyone gets all mad, I am not asking for anyone to do this problem. I just have some questions about it ... |
May 20, 2013 at 2:00pm
[8 replies] Last: It's good as example (Besides, you still didn't delete your array), b... (by S G H)
|
by Ludidi
Structures
|
Declare a structure Employee. An employee has a name, and employee number and salary. Write a function that takes a employee as parameter and prints out the d... |
May 20, 2013 at 1:31pm
[1 reply] : Your definition of function taxPayable has several errors, including... (by Chervil)
|
by georgieboy
How do I pass variable to function?
|
Hey guys, so I am trying to build a simple Linked List (Just practice NOT a homework assignment). I managed to make it without the use of functions but then my ... |
May 20, 2013 at 11:56am
[3 replies] Last: Try the following code. #include <iostream> #include <cstdlib> usin... (by vlad from moscow)
|
by manderson1
Problem with roman numeral converter (1,2)
|
Hello. Im trying to make a program that converts roman numerals to arabic numerals. I keep getting a error saying 'unresolved external', and I do not know why t... |
May 20, 2013 at 11:42am
[27 replies] Last: Test it on: http://www.romannumeralsconverter.com/ (by Namy)
|
by zebramints
Help with passing values
|
Writing a program for class and I'm having a very hard time trying to pass values. The assignment says "Write the procedure GetPlayerNames, which will accep... |
May 20, 2013 at 11:41am
[4 replies] Last: You made the second (and third) change I suggested. But what about the... (by Chervil)
|
by sl227
need help with homework... assigning grades
|
here is the homework: Write a program that in which you provide 3 grade values (as literal values) and calculate the sum and average of the grades. Store th... |
May 20, 2013 at 11:08am
[9 replies] Last: @bibby6522 create a new thread. Aceix. (by Aceix)
|
by jidder
SDL Clips
|
Hi, Ive recently been using SDL(for graphics and sound) to create a game. Ive been using LazyFoos tutorials and everything works as expected. My problem is t... |
May 20, 2013 at 10:36am
[11 replies] Last: Yeah i understand what you mean now. That would be far easier. Thanks ... (by jidder)
|