
please wait
by umeshinator
automatic changing the values in console?
|
my output sud b a name(like john smith:age) & his age should change automatically ( 10 times,startin wid 10 ending wid 20),every second/every minute ,& after 10... |
May 22, 2012 at 3:59pm
[2 replies] Last: Hi there, Here are some tips to look on this site or google for: - T... (by closed account o3hC5Di1)
|
by magadavixt
can someone teach/help me convert my program to windows form app?
|
heey guys! i need one last point for an a in my course which ends tomorrow! i was wondering if anyone could help me convert my simple program into windows form ... |
May 22, 2012 at 3:42pm
[6 replies] Last: Hi there, Just did a quick check for VIsual C++ and it has a converte... (by closed account o3hC5Di1)
|
by starter
struct help (1,2)
|
Hi! I'm learning structs and I'm creating some sort of a library program and I need some help. My program looks like this: #include<iostream> using namespa... |
May 22, 2012 at 3:39pm
[24 replies] Last: It's surprisingly like console I/O. For input, one must first declare... (by Whovian)
|
by Tepples
Need some help with sums
|
New here in c++. I need some help with designing a C++ code using a for loop. Prof stated that I cannot use anything else other than a for loop to design this p... |
May 22, 2012 at 3:31pm
[6 replies] Last: @,oug4, @cnoeval do not worry, be happy.:) (by vlad from moscow)
|
by evanc9606
Try Catch
|
I have been reading a little about try catch blocks. Could someone show me an example of a try catch that could be used with something like this. int cho... |
May 22, 2012 at 3:14pm
[7 replies] Last: Never mind i forgot to include limits, is either way better? (by evanc9606)
|
by Rus5
Function question
|
Hello. I have started to work through some C++ books and can't get functions to work the way I think they should. Can someone point me at an explanation or a so... |
May 22, 2012 at 1:46pm
[3 replies] Last: Notice how CodeMonkey wrote his rand() statement: (rand() % 5 + 1) .... (by doug4)
|
by devoid
help create read delete file
|
hi I have problem about my program this is code #include <fstream> #include <iostream> #include <stdio.h> #include <conio.h> #include <string.h> #inc... |
May 22, 2012 at 1:22pm
[no replies]
|
by CLearner88
Sorting vectors according to criteria
|
Hi guys, i need help in sorting vectors according to criteria. This was a boolean comparator function that i wrote to sort array values in descending order. Ho... |
May 22, 2012 at 12:50pm
[no replies]
|
by myoni
return pointer from function ?
|
how to return pointer to class from function with class with template ? I tries to do so, but not working: template <class T> linkP<T>* list<T>::chkSubSt... |
May 22, 2012 at 11:30am
[1 reply] : Could you be more presize what is not working? (by vlad from moscow)
|
by Halo Fan
Why is my sort changing my values?
|
My quicksort seems to change the values stored in my array. Here is my main program I have been using to test: int main() { QuickSort test(10); //declare... |
May 22, 2012 at 8:50am
[3 replies] Last: Thank you so much! A fresh pair of eyes really helps in finding such r... (by Halo Fan)
|
by Halo Fan
Checking for valid array size?
|
Will this be enough to ensure a valid array? if (max > 1) I need to write a constructor for a class that creates an array of size max (or 100 if not specif... |
May 22, 2012 at 8:19am
[3 replies] Last: If u are using large inputs of upto 1,000,000 or more, pls make sure u... (by SirSmilesaLot)
|
by aznairjordan
getting each word from an input
|
I have written code that gets full lines from a text file. Now i want to be more specific and retrieve words out of the input. I do not want any white space and... |
May 22, 2012 at 4:13am
[2 replies] Last: what exactly does inf >> do? if its the same as cin, then it just read... (by aznairjordan)
|
by Maestro8
C++ inventory programme
|
Problem Description An engineer keeps an inventory of car parts, but on paper. The usual operations on his ‘inventory database’ include adding new part... |
May 22, 2012 at 3:55am
[4 replies] Last: Here is the file: http://www.mediafire.com/?01l0tuzasbx5t9y (by Maestro8)
|
by vanessatse
inserting vector
|
I need to attach CourseTitle at the end of each CourseCode. I'm trying to use "insert" but I'm not getting it right so far. I googled around and it seems like I... |
May 22, 2012 at 3:43am
[1 reply] : The following is the criteria for my program. Am I on the right track ... (by vanessatse)
|
Help with a x and 0 game. |
#include <iostream> #include <string> using namespace std; void infolenta(); void lenta(); void info(); void lenta(string a, string b, string c, string ... |
May 22, 2012 at 3:14am
[3 replies] Last: code tags? and how could i use switch statements? (by closed account 23h0pfjN)
|
by Dan Halen
how to output message at end of fibonacci count?
|
I have a program that calculates/displays a specified number of Fibonacci numbers. I want a message at the end that says something like "enter q and Enter to q... |
May 22, 2012 at 3:06am
[2 replies] Last: No, that's actually very good. Thank you! That's helpful. I managed... (by Dan Halen)
|
Modulo and Big Number |
Hello Everybody! Here is my code: #include <iostream> using namespace std; void main() { long long unsigned a=456787766311376,c=0; c=a*a; cout<<c%36108945... |
May 22, 2012 at 2:37am
[3 replies] Last: You'd need 98 bits to hold the result of a*a. long long is 64 bits in... (by cire)
|
by jls36
initializing a static vector
|
I have a static vector data member in my class and Im having trouble to initialize it. My vector's data type is another one of my classes which is called Leg. I... |
May 22, 2012 at 2:08am
[no replies]
|
by sabrina23
Average sentence length
|
.,. |
May 22, 2012 at 1:28am
[8 replies] Last: . . . . .``~., . . . . . . . .. . . . . .,.-”. . . . . . . . . . ... (by atropos)
|
by TheAnav
Learning to make a GUI
|
I recently started learning C++ but the book I have been teaching only teaches how to make console applications. Can anyone point me in the right direction to l... |
May 22, 2012 at 1:24am
[13 replies] Last: No need to love me lol. (by S G H)
|