Beginners - September 2009 (Page 23)

another if else prob...
 
suppose that Average is a student's semester average and that final is the student's grade on the final exam. write a statement which assigns a semester average...
[3 replies] Last: if Average and Final Are less than 10 points apart if( abs( aver... (by jsmith)
by mattc
wierd answer at end of program
 
i am trying to make a program that will convert a whole number to binary... it works well from the groups of numbers I have tested until you reach 1024. when yo...
[1 reply] : 1023 is 11 1111 1111, or in decimal representation, 1,111,111,111 102... (by helios)
program stopped running error
 
I am trying to make a Go Fish program in C++, and am currently a student who is trying to better my knowledge of this language on my own. Actually I am done wi...
[4 replies] Last: If you're still reading this, I suggest you ask your teacher to rethin... (by NGen)
by kazein
Clarify what method I should be using.
 
(it's 1:15am est, after a long day...) I want to create random amounts of objects at a time, store them in an array and be able to search through the array f...
[3 replies] Last: hey whats a vector? Basically more manageable arrays: http://www.cp... (by mcleano)
Buffer overrun error
 
I ran into a buffer overrun error the file is a maple story private server file, its Biesmen's repack, it worked fine at 1st but now it wont work anymore.
[5 replies] Last: It means that there's too much information trying to be shoved into a ... (by NGen)
by joshky
Calling external program
 
I've been looking through sites trying to find a way to call an external program from within a program. Maybe I don't even know what to search for? i.e. A pro...
[15 replies] Last: Why so compicated? just use system, or to satisfy everyone : simply f... (by elvenspike)
Basic Class Question
 
Is it always best to make a set and get function for each private data member that will be manipulated in the class? Appreciate all thoughts about this. - Dang...
[5 replies] Last: Overuse/widespread use of setters and getters are a tell-tale sign of ... (by jsmith)
How to open IE explorer?
 
If there have been set a homepage, it could open with the homepage. If there haven't been set a homepage, it could open with a blank page. Would you pleas...
[2 replies] Last: I have already post it in "Windows programming" forum. How can I ki... (by HawkOfWinter)
return "this" is not working as expected
 
Still pretty new to C++, I figured that the best place to start would be to program up some basic data structures. However, I'm encountering a problem in my Bi...
[2 replies] Last: And there it is. *smacks head* Here's the new output, with guestgalk... (by alansdottir)
by joshky
Using escape key to exit loop
 
Back in BASIC I could program: 1: code; 2: if anykey$=ESC goto 1 else goto 3; 3: rest of code; obviously since we don't point to line numbers anymore, t...
[1 reply] : On Windows: http://www.cplusplus.com/forum/general/3389/page1.html#ms... (by Duthomhas)
by gong
prime number problem
 
hi can someone help me? my programme is suppost to print in the screen all the prime numbers smaller than the one i enter in the command line. but there are...
[3 replies] Last: thanks ;) (by gong)
by Vect
This Math sentance (1,2)
 
I am trying to figure out how to use increment in C++. Some guy told me to figure out this sentance, I am not sure if I have the right answer, because I can no...
[21 replies] Last: "Well, that's weird, because a total of 19 people have been added to ... (by kempofighter)
by Hsinom
Strange result
 
I am new to programming, and still a learner in C++...i had written a basic program from the tutorial on this very web site. However once i executed the progr...
[2 replies] Last: Thank you Helios, i was thinking it was some sort of glitch! (by Hsinom)
simple program for addition
 
i have this code where I was trying to make simple program for addition. Here is the code: #include <iostream> using namespace std; int a; int b; i...
[3 replies] Last: ok i get it now, tnx a lot! (by mr zdeis)
What's similar to "this"?
 
Hi guys, I learned how to program object-oriented using Java, and now I'm learning C++ by myself. My doubt is: which operator plays, in C++, the same role...
[4 replies] Last: I think I figured it out. Gonna write and compile my program, then ... (by stormqueen1990)
by fikri
Need example of declaration. (1,2)
 
hi guys,i need help with c++ declaration example. such as intenger,character,floating and string. i really appreciate it if someone will help me out. than...
[21 replies] Last: to mcleano : alright..can you refer any good beginner tutorial books f... (by fikri)
by mamali
what is an explicit function
 
Could any one explain me what is an explicit function ?
[2 replies] Last: In C++ only a constructor can be explicit: class A { A ( in... (by Bazzy)
how do you open a binary file?
 
when i open text files with the fstream using ofstream or ifstream they work fine if i enter unique names or names already found in the directory/folder... n...
[2 replies] Last: whats wrong with my code then? also what importance does binary files ... (by brokenbot)
binary text file drama
 
first, i want to just know if binary files have any relevance? second, check this out: #include <iostream> #include <fstream> #include <string.h> #inclu...
[2 replies] Last: wow super dope man.... thanks (by brokenbot)
calling processes on bash
 
i want to make a c++ program that calls commands like who( get whos on) and to put it in a string then print it or something like that... kinda like shell pipin...
[1 reply] : http://linux.die.net/man/3/popen Hope this helps. (by Duthomhas)
September 2009 Pages: 1... 212223
  Archived months: [aug2009] [oct2009]

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