Beginners - July 2011 (Page 29)

Anything wrong with VC++?
 
Hey I'm a relatively new programmer (Roughly a year, last few months ive gotten serious). I keep seeing people say VC++ is not a good IDE to use while learning....
[8 replies] Last: Well, eventually I'd like to get into a programming job (I was thinkin... (by ResidentBiscuit)
What does "int (__cdecl *)(void)" mean?
 
Hello all, I'm not sure if this should be posted in the beginners forum, but I'll take my chances. I'm currently messing around with DarkGDK and I get an ...
[4 replies] Last: Thanks a lot m4ster r0shi, that clears things up. Question answered!... (by Metalspy)
Just trying to get this straight
 
According to Wikipedia the Qt framework is free and open source software. Does this mean I could develop software on Qt and legally sell it? I'm just curious....
[2 replies] Last: So you can sell it, you just need to make the source code available? ... (by jeffsg605)
want to play again? true or false?
 
i have just started learning and im trying to make a system that will ask the player if he wants tot play again but whenh the player inputs Y or N, it always ...
[8 replies] Last: No problem, Daniel. I still sometimes accidentally type the equality o... (by Audie)
by Skizzy
Value Returning Functions
 
I'm having an issue writing this program. I am supposed to write a program to calculate 3 test scores and find an average using functions. I have to call the tw...
[5 replies] Last: ok now it works. I dont think id ever understand all this if this foru... (by Skizzy)
by Troy
C++.Net Byte array?
 
How would I do this code, array<byte> ^b = gcnew array<byte>(); //b = System::Text::Encoding::GetBytes("Hello world"); sock->Send(b); Like in C# ...
[1 reply] : using namespace System; using namespace System::Text; void func()... (by shacktar)
program that counts the number of letters in a file
 
Hi, I'm trying to write a program that counts the number of letters in a file using an input file stream. Here's the code: #include <fstream> #include <...
[7 replies] Last: ne555, Your comment helped me out a lot. My file was in the wrong dir... (by bool maybe)
by adn258
qt vs win32 ??
 
So I've dabbled in both of them now and it seems qt makes HUGE applications while the win32 api of course is tiny. Except for having to learn more and write mo...
[4 replies] Last: Because it's much easier to work with. You exchange some fine control ... (by Moschops)
help on a do-while loop please...
 
can you guys help me to see if there is something wrong with my do-while loop..?>< i was trying to do a continues loop but when i try to enter a y, it got erro...
[3 replies] Last: Do you want the variable "a" to be set to 0 each time the loop is exec... (by bool maybe)
Need a little help with a void function program
 
I'm pretty new to programming and I'm having a little problem with an assignment. I've already wrote the program according to the instructors specs but I can't ...
[4 replies] Last: Thanks. I'll give that a try and see how that works. I appreciate you ... (by jgirl2412)
minimum
 
when ever i run this it will only give me the first minimum and I dont know why can someone enlighten me? #include <iostream> using namespace std; ...
[2 replies] Last: thank you (by PCwake90)
Help with static member function
 
Hi everyone, this is my first post here, so please forgive any mistakes made on my part. I am having trouble implementing a static member function for a class c...
[4 replies] Last: Thanks to both jsmith and pain sama!! You helped me figure out my prob... (by wiiarethesound)
by youweb
Desenvolvimento de sites em Brasil
 
Procure pessoas interessadas em parceria de desenvolvimento de sites em Goiania. http://www.youweb.com.br
[no replies]
How to read a number by separate digits
 
Hi, im working on a program that can read number by separate digits ex: if user put in 32, then it will read as 3 and 2. my english is not very gud so i ho...
[5 replies] Last: Or you could start it as an int, and just type_cast it to a string whe... (by ResidentBiscuit)
How to recognise add-on libraries using Code::Blocks?
 
Suppose I want to make a GTK+ GUI application. Its source code is: #include <gtk/gtk.h> int main( int argc, char *argv ) { GtkWidget *window; gtk_init(&...
[5 replies] Last: Shit now I cant even compile simple code nevermind GUI. Ive just switc... (by Sputnik)
i cant' proceed to my SETMENU. why???
 
#include <stdio.h> #include <math.h> //Constant Variable #define set_a 10.20 #define set_b 22.20 #define set_c 34.20 #define gov_tax 6 #define ser_tax ...
[1 reply] : Put your code in [c ode][/co de] tags, explain what it does, and wha... (by hamsterman)
Question about Functions
 
I know that there are inline functions and regular functions. But I wanted to know that which is better and why? I have already seen the tutorial on this si...
[2 replies] Last: OK! So inline is only better than regular function if the function its... (by Nisheeth)
reading from a txt file
 
how do you write something that has a separate text file and the program must read the numbers in the file and compute each number given a formula?? i know t...
[1 reply] : Just like with std::cin, to read a number from a file, indata >> my_n... (by hamsterman)
Is there a function which returns the position of a string iterator.
 
I'm writing a program for a console calculator. Something where the user types in 2 + 2 x 2 + 6/2 = and my program returns the answer. In the program -an it...
[1 reply] : std::distance( str.begin(), your_iterator ); Gives you the linear d... (by jsmith)
WARNING:Lots of messy code!! Lock if you must...
 
I've been looking at this for 2 hours and i cant figure out whats wrong. Summary of program: Display a Tic-Tac-Toe board. The user must click on one the of...
[9 replies] Last: Under the "Build" menu, there's "Rebuild Solution". Even if i put ... (by shacktar)
July 2011 Pages: 1... 2728293031... 54
  Archived months: [jun2011] [aug2011]

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