0
votes
3answers
59 views
Redirect std::cout to newly created console
When you create a C++ console application under Windows you automatically get the console window created for you and std::cout outputs to the console window.
I have a GUI applicat …
2
votes
6answers
169 views
C++ cout printing slowly
I noticed if I print out a long string(char*) using cout it seems to print 1 character at a time to the screen in Windows 7, Vista, and Linux(using putty) using Visual C++ 2008 on …
0
votes
2answers
62 views
C++ cout cin string manipulation
I'm trying to get a line as input from the command line. My problem is that I'm not getting the whole line, but it's being tokenized by space.
So if I entered something such as "I …
1
vote
7answers
247 views
Display message in windows dialogue box using “cout” - C++
Can a windows message box be display using the cout syntax?
I also need the command prompt window to be suppressed / hidden.
There are ways to call the messagebox function and di …
3
votes
2answers
43 views
Limit the precision on std::cout of default values in boost::options_description
When I construct a boost::options_description instance like
options.add_options()
("double_val", value(&config.my_double)->default_value(0.2), "it's a double");
and lat …
3
votes
2answers
73 views
How can I pad an int with leading zeros when using cout << operator?
I want cout to output an int with leading zeros, so the value 1 would be printed as 001 and the value 25 printed as 025 .. you get the idea .. how can I do this?
Thanks.
2
votes
3answers
126 views
C++ ofstream vs. C++ cout piped to file
I'm writing a set of unit tests that write calculated values out to files. Each test produces a square matrix that holds anywhere from 50,000 to 500,000 doubles, and I have a total …
2
votes
5answers
137 views
How can I print a string to the console at specific coordinates in C++?
Hello,
I'm trying to print characters in the console at specified coordinates. Up to now I have been using the very ugly printf("\033[%d;%dH%s\n", 2, 2, "str"); But I just had to …
1
vote
2answers
118 views
How can I indent cout output?
I'm trying to print binary tree
void print_tree(Node * root,int level )
{
if (root!=NULL)
{
cout<< root->value << endl;
}
//...
}
H …
3
votes
6answers
191 views
cancelling std::cout code lines using preprocessor
One can remove all calls to printf() using #define printf. What if I have a lot of debug prints like std::cout << x << endl; ? How can I quickly switch off cout << …
1
vote
1answer
142 views
C++ : Unbuffered output with cout
How can you get unbuffered output from cout, so that it instantly writes to the console without the need to flush (similar to cerr)?
I thought it could be done through rdbuf()->pu …
1
vote
3answers
74 views
What is a ‘Stream’, relating to cin and cout?
Hi, I'm new to C++.
A tutorial is talking about cin and cout:
"Syntactically these streams are not used as functions: instead, data are written to streams or read from them using …
1
vote
3answers
170 views
“Ch++” or “ch+1” in C++?
Hello.
While reading "C++ Primer Plus 5th edition", I saw this piece of code:
cin.get(ch);
++ch;
cout << ch;
So, this will lead to display the following charac …
1
vote
3answers
273 views
Creating a cout function in C?
This is a totally hypothetical question, but I have to know the answer.
I assume most C++ compilers are written in assembly. Which makes them different languages entirely (I could …
7
votes
7answers
2k views
How do I print a double value with full precision using cout?
So I've gotten the answer to my last question (I don't know why I didn't think of that). I was printing a double using cout that got rounded when I wasn't expecting it. How can I …
