Beginners
|
|
by admin |
| Welcome to the beginner's forum in C++.com! In this forum, users can to talk about any topic rela... | |
| [2 replies] Last: How To Answer Questions in a Helpful Way Be gentle. Problem-... (by admin) |
|
|
by Zolaboony |
| Hi, i am new to C++ and have just written my "Hello World" program. It worked all right but the cons... | |
| [111 replies] Last: Just start without debugging in the debugging menu (by Timbo1) |
|
|
by taklct |
| the format like this ===================================================== || Record || Studen... | |
| [no replies] |
|
|
by hamsterman |
| Hi. How can I make a game like chess or tic-tac-toe so that it can be played over the internet? | |
| [no replies] |
|
|
by Mythios |
| Hey guys, been programming a lot more further with this game but I've come to a stump with this bit ... | |
| [5 replies] Last: Yup awesome, thanks :D (by Mythios) |
|
|
by Sathed |
| Hi there! Long time listener, first time caller... j/k! No really, I'm trying to convert the fo... | |
| [4 replies] Last: Wow... Maybe it was just too late to be working on this lol. index... (by Sathed) |
|
|
by zoldri |
| Hi i am very new to c++ and and this forum and i am trying to make an ASCII space invaders game whil... | |
| [7 replies] Last: Sorry I couldn't help you any more than that. Keep working at it thou... (by Sathed) |
|
|
by Novice |
| Hello, I looked in the contents here but can't find any thing on this particular problem...killin... | |
| [10 replies] Last: Ah, I thought msoft compilers keyed on stdafx.h and ignored everything... (by jsmith) |
|
|
by aeson25 |
| This is more of a general question, but it's end is for a C++ program. I've read articles about con... | |
| [1 reply] : You will need to know some networking, more specifically winsock. Try... (by Sathed) |
|
|
by scooterx3 |
| I've included string: '#include<string>' but when I try to make my variable a string it doesn't want... | |
| [5 replies] Last: Blargh!! I *ALWAYS* mess that up...XP (by firedraco) |
|
|
by Mythios |
| Hey Guys, Just started a basic SDL program but I've already come to an error after the first coup... | |
| [3 replies] Last: Thanks a heap for that helios - that explains it a lot better. Cheers (by Mythios) |
|
|
by dhanny |
| Hello! I need to create a function - input stream manipulator(with arguments). I managed to create... | |
| [no replies] |
|
|
by Brainswet |
| Hi, I'm new here, I got Visual Studio for .NET the other day and was capable of creating, in C#, an ... | |
| [no replies] |
|
|
by nenoviciss |
| i have a problem here is the code: #include "stdafx.h" #include <iostream> using namespace s... | |
| [5 replies] Last: I personally would use STL strings instead. #include <algor... (by jsmith) |
|
|
by rainylam |
| I am a new learner of pointers and arrays, when I start writting this small programme, I find ACCESS... | |
| [1 reply] : Edit your post and use tags and indentation to make the code re... (by mahlerfive) |
|
|
by allenanders |
| hey guys im a high school student in desperate need of help with loops especially do while loops an ... | |
| [2 replies] Last: thank you very much it helped a lot (by allenanders) |
|
|
by srlunx |
| ummm...i am using Visual C++ 2008 - Express Edition. and...i can compile/release in the [Dev C++] p... | |
| [1 reply] : Are you sure you have your paths set up right? It looks like you are b... (by firedraco) |
|
|
by jakeboii69 |
| i have wrote my "Hello World" code but now want it to stall afta being decoded so that command promp... | |
| [5 replies] Last: On my VC++ works fine... Try to #include "stdafx.h" ( if you... (by Bazzy) |
|
|
by brabrarob |
| I'm a c++ newbie and would like to know what is the best way to handle collections: vector template ... | |
| [1 reply] : With a vector you could add elements so it is better but it i... (by Bazzy) |
|
|
by Nay |
| My program runs without error. It has few cout statements. But I cant see any output on console. I t... | |
| [3 replies] Last: Aside from main() that it should be declared as int[/co... (by Bazzy) |
|
|
by Nay |
| Can anyone guide me how to take input from a text file and then send the output to text file while w... | |
| [2 replies] Last: Take a look at the relevant section of the tutorial on this site, it c... (by Faldrax) |
|
|
by killingthemonkey |
| I've used this loop before. It is supposed to count up to whatever number I enter. All of a sudden, ... | |
| [7 replies] Last: Glad for you killingthemonkey! wish you good luck with your c++... (by arun1390) |
|
|
by sacred |
| Hi. I've got a short bit of code and what I'm trying to do is read from a text file using getline. ... | |
| [2 replies] Last: That's cool! I didn't know about that one... (by seymore15074) |
|
|
by DarkGecko78 |
| hi together, in a source code i found the following: bool Logger::Success(const char* ms... | |
| [2 replies] Last: And it's totally pointless in this case since Logger::Success() return... (by jsmith) |
|
|
by Bernie |
| Hello I am new to this forum and new to C I am having trouble understanding fork() process and th... | |
| [2 replies] Last: Thanks! (by Bernie) |
|
|
by benj1391 |
| ei dudes.im a newbie on this prog and im just wondering if it is possible to create a high scores ch... | |
| [1 reply] : Do you want a container? http://www.cplusplus.com/reference/stl/ (by Bazzy) |
|
|
by Mythios |
| Hey guys, just finding out if there are any reason why my game builds fine using SDL with /SDL_image... | |
| [2 replies] Last: What do the linker errors say?? (by guestgulkan) |
|
|
by proudHelios |
| Hi all, I'm having a bit of trouble sorting my array into ascending order. I don't want someone to w... | |
| [1 reply] : http://en.wikipedia.org/wiki/Sorting_algorithm Look at: - Bubble s... (by Karql) |
|
|
by cannsyl |
| Could someone please tell me what is wrong with my code. // poddriver.cpp //Adapted from... | |
| [6 replies] Last: Just reading through that int BobCatPod::addSong(Song s) [/code... (by guestgulkan) |
|
|
by cplusplusnoob |
| #include <iostream> #include <fstream> #include <string> #include <cstdlib> #include <c... | |
| [11 replies] Last: the only problem now is turning the * into the char value the user put... (by cplusplusnoob) |
|
|
by Return 0 |
| I have a char myArray that I'm passing to a function. In my function I need to capture the lengt... | |
| [2 replies] Last: int strlen(char*) was exactly what I was looking for. Thanks! (by Return 0) |
|
|
by ineedinfo |
| I just need a little help this is something i dont think is too complicated. I am using borland tur... | |
| [4 replies] Last: thanks, i will look harder (by ineedinfo) |
Registered users can post in this forum.
