Problem in Template Classes |
1:- In Template class : template <class khan, class khan1, class khan2> if I removed the other tw... |
Jun 18, 2013 at 3:54pm
[6 replies] Last: Oops, sorry I made a typo What I mean was cout<<foo(); that would ex... (by ne555)
|
by swagsurfer
Keyboard output
|
Hello. I would like to try and create a small program which for example can make my keyboard pres... |
Jun 18, 2013 at 3:26pm
[3 replies] Last: ok i understood nothing about SendInput() so i tried looking into keyb... (by swagsurfer)
|
by RastaWolf
String Objects and String Literals
|
Hey Everyone, I understand that strings are objects of the class string, so when you store a stri... |
Jun 18, 2013 at 3:03pm
[3 replies] Last: all string literals are stored in static memory (although compilers ar... (by Cubbi)
|
by piczim
c Help with the next step
|
Write your question here. I am trying to work out how I take the result from the question asked in ... |
Jun 18, 2013 at 2:40pm
[4 replies] Last: The scanf() statement is not correct. You have specified that you want... (by Chervil)
|
by Ardeshir81
How is formatted input in iostream?
|
HI! I was wondering how can I do some formatted input in C++? I mean like in C we write : in... |
Jun 18, 2013 at 1:32pm
[2 replies] Last: cin.setwidth(int) i believe (by closed account Dy7SLyTq)
|
by abirby
I can't read info
|
Hello, I started programing an application in order to send sms through a cell phone connected via U... |
Jun 18, 2013 at 11:35am
[3 replies] Last: fgets(msg,300,stdin); is executed (haven't seen this that way before... (by coder777)
|
by GuruMan94
Destructor
|
Write your question here. #include<iostream> using namespace std; class test { int i; ... |
Jun 18, 2013 at 11:29am
[1 reply] : Which way does it work?:) Its work depends on the storage duration. Fo... (by vlad from moscow)
|
by OxBADC0DE
Error using Regex
|
Recently I've been trying out some of the regex functions in the C++11 and I know about the regex_se... |
Jun 18, 2013 at 11:18am
[4 replies] Last: > I'm using MingW 4.7.1, it does work with Regex right? No. GNU libst... (by JLBorges)
|
by sinperro1
Class within class
|
Hi, I am currently trying to write a piece of code which will allow me to add a column of data t... |
Jun 18, 2013 at 11:12am
[no replies]
|
by Blank
time calculator
|
i have no idea how to do this problem..somebody help? Write a program that asks the user to enter... |
Jun 18, 2013 at 11:06am
[14 replies] Last: Create class Time and then in Constructor set function Check(int,....)... (by GuruMan94)
|
by showells
Please help find problem
|
I am pretty new to this and I have never seen this and cant really find out what it means when I bui... |
Jun 18, 2013 at 10:34am
[5 replies] Last: do a clean and rebuild. (by mutexe)
|
by incxx
help with adding variables
|
when my program is compiled, the total of all the prices always equals to zero even when a product i... |
Jun 18, 2013 at 10:16am
[3 replies] Last: no, i meant why previous poster saying #include<cstring> and not #incl... (by mutexe)
|
by jpilfold
Displaying Long integers
|
Hi, Could someone please tell me how I can display realllly long integers? I am doing one of the ... |
Jun 18, 2013 at 6:59am
[2 replies] Last: one possible solution is instead of long long, try to implement multip... (by abhishekm71)
|
by RastaWolf
condition being met, wrong branch taken...
|
Hey Everyone, I'm testing for a condition using a string data type. For a reason I can figure ou... |
Jun 18, 2013 at 5:41am
[2 replies] Last: Thanks IdeasMan, It worked like a charm. I'm just starting to get bac... (by RastaWolf)
|
by lili143
Exhausted my resources on function does not take 0 arguments error
|
Hello, I have been working a long time(days) trying to resolve this error. I have researched online... |
Jun 18, 2013 at 5:26am
[4 replies] Last: http://www.cplusplus.com/articles/z13hAqkS/ (by ne555)
|
by hogwheeley
help with two transactions
|
i need help with writing a code for lets say one transaction and then for the second transaction the... |
Jun 18, 2013 at 4:50am
[3 replies] Last: You add them together... double totalSellingPriceBoth = totalSellin... (by Daleth)
|
by RastaWolf
Random numbers with modern c++ conventions
|
Hey Everyone, I was converting some code to practice a random number generator method I was readi... |
Jun 18, 2013 at 4:04am
[7 replies] Last: Thanks for your post. I can stop troubleshooting now! (by RastaWolf)
|
by citizenkoehn
Help! Problem with bool returns and loops?
|
I guess I'm not sure what my problem is here. The following program is based on a class assignment, ... |
Jun 18, 2013 at 3:57am
[2 replies] Last: Dang, that was quick! I knew there was something fishy about that line... (by citizenkoehn)
|
by nikki1337
Bubble sort 2-D array Alphabet
|
I am trying to sort a 2-d array using bubble sort. I get the error Undefined symbols for archi... |
Jun 18, 2013 at 3:45am
[1 reply] : Have you tried removing the asterisk on lines 6 and 30? (by kevinkjt2000)
|
by jrook32
Pointer help
|
Queue::addItem() is linking the new item on the end ok, but isn't updating pTail to point at the new... |
Jun 18, 2013 at 3:44am
[3 replies] Last: Try this: (I have not tested it yet) void Queue::addItem( char *pDat... (by Smac89)
|