Beginners - September 2008 (Page 7)

SetConsoleCursorPosition Function
 
I was looking within the past few weeks for a true simple example of the cursor position function use, these forums seems to be my last stop before giving up. ...
[9 replies] Last: lol cool (by neo4life)
for loop problem
 
hello there i have here a problem pls help me analyze here it says create a program that accepts 5 integers. calculate and display the sum of 5 input in...
[7 replies] Last: @poke386 thanks sir for your help being a begginner it takes me more... (by jenritz2k3)
How to keep a program running?
 
I'm having a problem with my "basic-calculator". The idea of the program is, that the user types in two numbers, and the program multiplies, divies, subtracts a...
[8 replies] Last: Here's another way to go about it: char ch; do { cout << "Put in ... (by Poke386)
If statement
 
Is there a way to write an if statement that says if something does not equal something?
[2 replies] Last: lol As helios has....explained(lol) this is how it works; if(somet... (by Poke386)
Coding Problem
 
hi... i want to make an output in C++ program. but i have a problem... we only have one variable (a), and we want to make it in ascending (a++) for several ...
[3 replies] Last: Umm...come again? I didnt get what you said. (by Poke386)
Compability problem of c++ 6.0 with vista
 
hi, does anyone know how to solve compatibility problem of visual studio 6.0 with vista?
[1 reply] : http://msdn.microsoft.com/en-us/vs2005/aa948854.aspx http://kleymey... (by Duthomhas)
Constructor parameters
 
Hello, I'm still trying to completely understand the constructor in this struct. Specifically, what is the purpose of the parameters after the colon? My gu...
[5 replies] Last: helios, Not only new to C++ but also new to the forum thing. I lik... (by Curt Ivey)
Deck of Cards
 
Hey folks! I am trying to set up a class that creates a deck of cards, shuffles it and display it. my code doesn't display an output, but also doesn't show any ...
[4 replies] Last: O(infinity) O(you)! The data structure is the least strange here. ... (by helios)
by bish
Recursion with Queue's
 
Hi guys. This is my first post here at cplusplus. I've been a big time lurker and have decided to join up. I assume this is where my question belongs, because I...
[5 replies] Last: I already have the queue 4 3 2 1, when I go to input 5 using the inse... (by helios)
by Cymae
How to convert Char to CString
 
I have a custom little CString formatter which lets you insert variables into a CString. It works as follows: you have a reference to a main string on a sepe...
[3 replies] Last: Sure you can. //char *a,*b,*res; char *c,*d; if (condition){ c... (by helios)
by dorani
arrays
 
How would develop a user defined array num1 and num2 which takes a single dimensional array as arguments and store: (i) all even numbers in one dimensiona...
[1 reply] : http://www.cplusplus.com/forum/beginner/1/ (by Zaita)
diff b/w = & ==
 
hey.. wats d diff b/w = and == in c++?? as i was told = assigns the values .. and == cheks it .. does == does nt assigns the value??
[3 replies] Last: yes that's right. (by Zaita)
Simple function Problem
 
Why I get these errors when I try build this code? C:\Codes\C++\C++ Projects\Test.c|7|error: initializer expression list treated as compound expression| C:\...
[4 replies] Last: Ok, thanks!!! (by HeatMan)
by Umz
String to uppercase
 
I'm trying to output a string to a file twice, the first time it needs to be exactly as input the first time but then the first character needs to be changed to...
[2 replies] Last: nice thanks. Edit: Ok it was working but when I tried to use it in ... (by Umz)
Program wont work
 
I am writing a program that will take in polar or rectangular coordinates and convert them to the other. This is what i have so far but it will not work and...
[5 replies] Last: Start here: http://www.cplusplus.com/doc/tutorial/program_structure... (by firedraco)
Errors
 
I know that what im going to post is a massive lines of codes but i hope you guys can help me to solve the problems...well, basically, i was asked to find the m...
[11 replies] Last: THAAAAAAAAAAAAAAAAAAAAAAAANK YOU GUYS!!!!!!!!!!!!!!!!!!!! THANK YOU VE... (by renzokuzen)
what is diff b/w ++a and a++
 
What is the diff b/w ++a and a++ in the implication in b/w the assiengment.. plz tel it in basic language..
[6 replies] Last: hey thanx.. to ol who posted rep.. they wer really useful .. (by RASHMI GUPTA)
Y/N Question
 
How I can make the program react when someone press Y or N? I should use #define *Letter* (hexa code) ? If yes, what are their hex values?
[6 replies] Last: Thanks!!! (by HeatMan)
by Umz
Functions to create functions?
 
Just wanted to know if its possible to create a program that can create functions at run-time? I don't think its possible but I can't find anywhere that gives a...
[4 replies] Last: You could implement a language to interpret a script at run-time. (by helios)
Some problems with dynamic allocation
 
I'm a bit confused with the code below: cin>>size; int *array=new int ; for(int i=0;i<size;i++) cin>>array ; cout<<"Printing...\n"; for(int k=0;k<size;k...
[5 replies] Last: Oh, thanks, I get it. Sort of anyway. (by Poke386)
September 2008 Pages: 1... 56789... 16
  Archived months: [aug2008] [oct2008]

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