
please wait
by zeak
scanf problem....
|
cin.get = to??? |
Mar 14, 2013 at 10:07am
[3 replies] Last: The exact equivalent would be scanf("%*1000[^\n]%*1[\n]%*c"); but th... (by Cubbi)
|
by Livingdreams
c++ program to read html code.
|
I have to write a c++ program to read html code and do bunch of stuff. One thing that i have to do is to count the no of attributes and sort them in descenting ... |
Mar 14, 2013 at 9:35am
[17 replies] Last: Thank you so very much Yes i knw this is not my strong side!! i am d... (by Livingdreams)
|
by bobbyray
Can anyone give me a hand with this code!? any help would be greatly apreciated!!!
|
I cant get this code to run properly! The error code that comes up is saying that get_input is not intalized. but here is wat i need to accomplish---> /*******... |
Mar 14, 2013 at 8:46am
[7 replies] Last: As long as your function prototypes exactly match your function declar... (by ajh32)
|
by rahuliitb
opening file
|
can we open a file in c++ using a variable(either character or int)? please tell the syntax if that can be done. thanks. |
Mar 14, 2013 at 7:40am
[1 reply] : read this: http://www.cplusplus.com/doc/tutorial/files/ (by Darkmaster)
|
by nhat nguyen
To mark both smallest and largest element
|
Hi please help me for this code, asking to mark both the smallest and the largest element. I just got largest, didn't get smallest number. thanks, I appreciate... |
Mar 14, 2013 at 7:31am
[9 replies] Last: #include <iostream> int main() { const int CAPACITY = 1000; doubl... (by Darkmaster)
|
by DrakeMagi
I can't get opengl 2.1 vbo to draw
|
i have geforce 6200 , gnu/linux distro with real nvidia driver all i get is blank screen and haven't found a solution to fix it without going back to glBegin... |
Mar 14, 2013 at 5:01am
[1 reply] : I was trying to draw a flat triangle . oops! fixed now. (by DrakeMagi)
|
by danny280279
Tables in C++
|
I'm a beginner in C++ but I would like to know how to make tables in C++ that combine different types of data, such as, country codes, countries, and languages,... |
Mar 14, 2013 at 4:14am
[5 replies] Last: > I'm a beginner in C++ but I would like to know how to make tables in... (by JLBorges)
|
by jaywalls
How to display any zeros in front?
|
How would I make the program still display zeros in front of a number? Like say for example: cout << "Enter any number"; cin >> number; cout << nu... |
Mar 14, 2013 at 3:52am
[1 reply] : You may want to look into some of the stream output manipulators such ... (by jlb)
|
by bestmaster99
Anyone smart enough?
|
Hi,I have been trying to learn C++ programming from the book called C++ Without Fear 2nd Edition.There is a challenging exercise which I couldn't solve.Is anyon... |
Mar 14, 2013 at 3:51am
[1 reply] : If you guys don't get it maybe a preview of the book might be helpful ... (by bestmaster99)
|
by zeak
What's this?
|
cin.get(); |
Mar 14, 2013 at 3:49am
[7 replies] Last: look up a page on printf. idk what the conversion rate between setw an... (by closed account Dy7SLyTq)
|
by yelnatz
What does "^" mean for variables?
|
Help? ... private: static String^ key; private: static String^ secret; ... String^ dataStr = GetInfo() + "&" + GetNonce(); array<Byte>^ data = ... |
Mar 14, 2013 at 1:31am
[2 replies] Last: ^ is to * as % is to & (I'm assuming managed C++ not WinRT) ^ = manag... (by binarybob350)
|
by hopesfall
void pointer as a parameter
|
I want to have a function that has a pointer to an int/double/string so I thought I'd use a void pointer like so: int someFnc(int a, int b, const void *key){ ... |
Mar 14, 2013 at 1:29am
[1 reply] : Since the parameter is a void * you need to pass in the address of som... (by binarybob350)
|
by geezle86
Can You Tell Me What Is It For?
|
Ok, so I build this #include <iostream> #include <cstdio> #include <cstdlib> using namespace std; int sumSequensce(void) { int accumulator=0... |
Mar 14, 2013 at 1:01am
[1 reply] : your code cout << "Enter next sequence: " << endl; acc... (by greenleaf800073)
|
by IWishIKnew
OOP- CLASSES
|
A few questions...: Under what circumstances do I need a destructor? What can I create from a class that would cause me to have to use a destructor (and w... |
Mar 13, 2013 at 11:30pm
[4 replies] Last: May be you find answers onyour questions at http://www.cplusplus.com/d... (by tcs)
|
by unoo
Program from a .dat and histogram
|
Hi, I'm really new programming in C++ and I need your help. I have to make a program which has to read from a .dat file a column of 9999 values (like 6548.09897... |
Mar 13, 2013 at 11:21pm
[1 reply] : 1. Line 9: you're dereferencing an uninitialzed pointer. This could c... (by tcs)
|
by colbra
Loop causes "not responding"
|
hey Guys got a loop here that make the program go into a not responding state bool SetTime(const int hour,const int min,HWND sec) { do { time_t s=time(... |
Mar 13, 2013 at 10:21pm
[no replies]
|
by Rooster
Problem in Tree, help!!
|
Hello friends, I am trying to fill one tree of three nodes at most, I have one function to add nodes to the tree: void SkillTree :: AddSkill (char * name, c... |
Mar 13, 2013 at 9:20pm
[no replies]
|
c++ triangle in a nested while loop, simple ways, using counters |
Hi, I am a beginner at coding and I recently received a question from my teacher, to make triangles using c++, in nested while loops. The triangles were: * *... |
Mar 13, 2013 at 8:42pm
[5 replies] Last: sorry for the mistake, thanks again :) (by closed account 41U4izwU)
|
Can anyone help me figure out how to write this program? |
I am trying to make a program that will calculate gpa using a transcript from an input file. The transcript includes the title of the subject, the letter grade,... |
Mar 13, 2013 at 7:56pm
[3 replies] Last: I dont have a compiler handy. But based on http://www.cplusplus.com/... (by emcege)
|
by sis007
Link list Iterator.
|
Hi, I started writing a program that takes a name and put it in a list (created in the program) by alphabetical order. I almost finish it. But I can't figure... |
Mar 13, 2013 at 6:38pm
[no replies]
|