cplusplus.com cplusplus.com
cplusplus.com   C++ : Forums : Beginners
  Search:
- -
C++
Information
Documentation
Reference
Articles
Sourcecode
Forums
Forums
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Articles
Lounge
Jobs

-

Beginners

news Welcome -- read before posting! closed 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)
question Console Closing Down (1,2,3,4) by Zolaboony
Hi, i am new to C++ and have just written my "Hello World" program. It worked all right but the cons...
[77 replies] Last: (Yawn. Sleep is great. /me wakes up) You are right, but I think my ... (by Duoas)
default STL and Vectors by bluegray
its been about a year and a half since the last time i did any real c++ programing and could really ...
[no replies]
default Do While Loop problem by HeatMan
When I tried compile the Do-While Loop tutorial program, the compiler (CodeBlocks) writted: #...
[no replies]
default Being able to "Keep Track of.." by Spinage209
So i am making this "Number Guessing" game for a school lab. And i need to be able to keep track...
[1 reply] : create a variable int count = 0; in your loop after each time the pla... (by bluegray)
default How To? by walaskey
Hey if you keep getting alphanumeric data as outputs instead of numerical data then what could the i...
[2 replies] Last: By default floating point numbers are output in scientific notation, w... (by jsmith)
default release by man156
how i can release my programme after finishing it
[6 replies] Last: why not just set it to release?^^... no debug stuff... well... i am... (by Incubbus)
default [ASK]C++ beginner by maeninkompor
hello there... 1. why (a=1) != (a==1)?? what is the difference of (=) with (==)? 2. what is hea...
[2 replies] Last: Take a look at: http://www.cplusplus.com/doc/tutorial/program_struc... (by true)
default Clearing Screen by Mertovun
Is there any way to clear screen when writing a console program?
[2 replies] Last: And on Windows: http://www.cplusplus.com/forum/beginner/1988/page3.htm... (by Duoas)
default Looking for a tutorial by RDH37
Im looking for a tutorial on reading a txt file into a vector. If someone could give me a link or po...
[4 replies] Last: A std::vector < char > is not as handy as a simple std::... (by Duoas)
default using predefined classes by hadi
hi should anyone please tell me what following line means ? list <int>::size_type i;...
[5 replies] Last: But not necessarily. But that is the general intent. The list class... (by Duoas)
question How get started Make RPG With C++ by Knight01
Hello I am a beginner.I have project for make RPG with C++,but i don't know anything.Someone help me...
[11 replies] Last: Because I ever through it was programmed in Java ... (by HeatMan)
default pathfinding by hamsterman
Hi I want to make a pathfinding for my strategy game. I know how to make a tile based system but I ...
[1 reply] : http://en.wikipedia.org/wiki/A*_search_algorithm That page also has... (by firedraco)
default Visual Studio 2008 Error by djohnson
I am new to programming and my first assignment is to write the hello world code. However, I wrote t...
[3 replies] Last: I was told that you cannot really save to the desktop. But another fol... (by Robot1)
default Loop'n Exponential Series Aid by jabernok
I am trying to evaluate an exponential series over a specified range for x: from -2 to 2, with a tot...
[3 replies] Last: factorial = 1; factorial = factorial * n; here you firs... (by hamsterman)
default File I/O by Vector
hiYa! Im new to reading files with C++! With C im A-OK! Im Reading the same file as before! Only...
[14 replies] Last: You know, this site has a reference for a reason. Five minutes ago I d... (by helios)
default About null by dnrsimha23
Sir what is null.what does it represent in c and c++? Is it a keyword or identifier ? What value doe...
[1 reply] : I am fairly certain the standard says NULL is the following: #i... (by Zhuge)
default Memory writing issues by SnapCrakllPop
Ok, here's what I've got: #include <windows.h> #include <iostream> using namespace std; ...
[4 replies] Last: If valueToWrite is declared as BYTE valueToWrite he can't use (void*... (by helios)
question Command that acts like a dice by bluezor
Hello. I recently tried to create a mini program. I wanted to use a command that works something lik...
[12 replies] Last: Yeah, but just about everything (well, that isn't really huge) is pseu... (by jpeg)
default convert one .cpp file into three files? by Sloaney
hey guys i was wondering if i gave someone a C++ program i have written that was in .cpp format if t...
[2 replies] Last: Pfft... I'll do it. I'll be easier to explain through MSN than throug... (by helios)
default Pointers vs References by BlahBlah
Would it be better to use pointers or references to pass varibles in and out of a function? Thank...
[7 replies] Last: I agree that there are times when pointers are preferred, and the two ... (by jsmith)
default Read from text file by tqa
#include <list> #include <vector> #include <queue> #include <iostream> #include <fstream> #incl...
[3 replies] Last: The class Digraph is empty so a load of errors turn up. (by guestgulkan)
question RPG battle system by idono
im tring to get the combat system the way i want it the goblin is to attack randomly but when he att...
[6 replies] Last: Hi idono can you teach me how to make RPG with C++ because i am a begi... (by Knight01)
default Compiling a simple C++ code by Poornima
Hi All, I am trying to compile a C++ code and it gives me the below error. /usr/ccs/bin/ld:...
[8 replies] Last: A shot in the dark - why is it that ld is reporting an error in... (by guestgulkan)
default Undefined number of values passed to a function by farhan3d
Hey all, I am working on developing a small finite element analysis program. Finite element analy...
[4 replies] Last: Thanks for the reply guys. The container class and function with varia... (by farhan3d)
default tryint to get rid of a virus by hells fury
me and some friends know not much about c++ but we are trying to use it to make a program to get rid...
[5 replies] Last: 90%+ of viruses show up in the process list. (by Zaita)
default How to force a mouse click on certain screen coordinates? by ShadowTek
I am trying to find a way to automate the usage of strictly GUI applications that lack any command l...
[3 replies] Last: No worries :) (by Zaita)
default 'read': identifier not found by chopficaro
im just trying to get the hang of binary file io by making a simple program that can write a structu...
[5 replies] Last: thanx, it works, i can read or write any number of structures to a fil... (by chopficaro)
default Operator overloading problem by QWERTYman
Upon attempting an operator overloadulation (yes, I know, not a word), I get an error stating that ...
[5 replies] Last: Mahlerfive's solution worked, sorry for not saying so earlier. Than... (by QWERTYman)
question About StringStream by HeatMan
Uhm... I not understanded what difference it does... Could someone explain it to me?
[4 replies] Last: it makes them useful for turning numbers into strings. (by guestgulkan)
question stringstream by Mertovun
Hi. By following the tutorials, i cannot understand the advantage that stringstream provides. The...
[1 reply] : Another thread on exactly the same topic here at almost exactly the sa... (by guestgulkan)
default 2 errors inn rpg battle test by asvati
ey, i have started with c++ a couple of days ago, when i was now trying out the start of a rpg battl...
[17 replies] Last: Yes, just make sure to remove the semicolons on the end of the other l... (by Zhuge)
Pages: [1] [2] [3] ... [12]   Archived months: [jul2008]

Registered users can post in this forum.
Home page | Privacy policy
© cplusplus.com, 2000-2008 - All rights reserved - v2.2
Spotted an error? contact us