Beginners - July 2013 (Page 40)

Beginners Help
 
I'm new to programing C++ and i cant decide which IDE to use. I'm running on Windows 8 x64. Any suggestions?
[6 replies] Last: First I'd buy a different operating system such as Windows 7 (or even ... (by TheBeardedQuack)
C++ primer 5th edition vs C++ primer plus 6th edition?
 
which is better for a beginner?
[19 replies] Last: @vlad @Megziflips From chapter 5, he began to use a lot of unexpl... (by Megziflips)
What does this mean
 
Hi there today I was reading my book and I couldn't understand this A value, such as 42, is known as a literal because its value self-evident. Every literal...
[11 replies] Last: Thanks you..i get it now..i think (by closed account EwCjE3v7)
Need help with a homework assignment
 
Very new to this subject. I some what understand but most of my homework or questions normally isn't covered in my class lectures. Can some one explain to me li...
[2 replies] Last: 1) On line 17 You need to define a type for the variable "area". What ... (by closed account 3qX21hU5)
Help please!
 
Hi, my name is Jenson. I'm 15 years old and just getting into c programming. I've already made a few simple applications that pop up text when activated, but I...
[4 replies] Last: Wow, I didn't even notice that the values aren't declared XD Been a wh... (by TheBeardedQuack)
VC++ is alien code
 
Why a standard hello world: #include<iostream> int main(){ cout << "HELLO" << endl; system("pause") return (0); } can't work on visual c++ 20...
[7 replies] Last: using namespace std; then it works. THANKYOU (by Marc Colome)
by Tomsta
How to use Vectors for a game
 
Ok so i'm making a frogger game, and for the enemies i would like to put them into vectors as currently the way i do it at the moment is rather clunky (code fol...
[1 reply] : define a class. then vector<your_class> (by closed account Dy7SLyTq)
code that Repeats the process. (1,2)
 
what codes do you use in order to repeat the whole process of a program? (P.s: i think its "for loop" or "do while" but i dont know where to place it since its...
[20 replies] Last: if i may ask, does the operating system use the return value of main(... (by closed account 3qX21hU5)
How to know if my gotoxy code is working correctly in Eclipse Juno CDT?
 
Given below is a simple report card program I made in school using Turbo C++. At home I use Eclipse Juno CDT and GCC 4.7. So when I ran my original code on Ecli...
[no replies]
project for highschool
 
please can anyone suggest me a good project for my highschool . just give me good ideas on which i can make projects . in c++ i know functions flow of controls ...
[12 replies] Last: haha nice one . i will like to see it too (by jayssj11)
File I/O
 
Hi, I have written the following code to add data to text files which are required to store 3D scan data (I have to calculate the y-coordinate). My code see...
[2 replies] Last: Ah, now I see, thanks for that mutexe! (by sinperro1)
Looking for a library to change the tempo of a file
 
Hello there. I'm new in C++ and I use Qt. I'm working on a small program which will be able to change the tempo of sound files in batch mode. Before this ...
[1 reply] : May you post a block of code so it can be easier for us to identify th... (by Group of Eight)
Can't run my simple payroll system.
 
Why I can't run these line of codes #include <iostream> #include <string> #include <sstream> #include <iomanip> using namespace std; int main(){ ...
[2 replies] Last: Quincy? I would suggest using Code Blocks or C++. I don't see any erro... (by Group of Eight)
Platform for writing
 
Does anyone knows any free programms for writing that i can download? Windows
[3 replies] Last: DEV C++ is good but it hasn't been updated in a while. Eclipse is nice... (by Group of Eight)
Passing arguments to program, compiler errors in c++ structured program in c it is working
 
Hi there, i work on a linux platform and was able to handle arguments in standard c programs in the past. I am actually a bit frustrated about getting pas...
[2 replies] Last: Hi cire, Thank you for the hints. At first I had a problem to compile... (by Nils Koehler)
Virtual functions mixed with vectors of objects
 
I'm trying to display the stats of each item in the player's inventory, but it's not going so well. The vector's decleration: std::vector<Object*> inventor...
[2 replies] Last: I FOUND OUT. I accidentally changed it so the vector didn't hold poin... (by kong288)
by xspec
whats wrong with my code
 
errors with program #include <iostream> #include <fstream> using namespace std; void displayitens(); int getwhattheywant(int d); int main() { int...
[3 replies] Last: thanku mannude that was it and also cool name (by xspec)
by ace55
header file problem please help
 
My program won't run it says fatal error stdafx.h: no such file or directory. What's wrong? #include "stdafx.h" #include<iostream> using namespace ...
[1 reply] : Please do not post multiple threads of the same question. (by closed account 18hRX9L8)
by ace55
please help im lost
 
i get the error stdafx.h no file or directory. why is that?? thanks!!! #include "stdafx.h" #include<iostream> using namespace std; int *Shifted_arra...
[3 replies] Last: Here is your fixed code: #include<iostream> using namespace std; in... (by closed account 18hRX9L8)
Char Variable generator
 
I am new to C++ and I have an idea to solve a certain program problem I am having but I do not know if this is even possible. If I want a program to have the...
[2 replies] Last: @Disch Thank you! Looks like I have some reading to do haha. Haven't ... (by mohrchance)
July 2013 Pages: 1... 3839404142... 53
  Archived months: [jun2013] [aug2013]

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