Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
8answers
21k 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 make cout print a ...
20
votes
5answers
477 views

Insight into how things get printed onto the screen (cout,printf) and origin of really complex stuff that I cant seem to find on textbooks

I've always wondered this, and still haven't found the answer. Whenever we use "cout" or "printf" how exactly is that printed on the screen?. How does the text come out as it does...(probably quite a ...
18
votes
1answer
416 views

how does cout << actually work?

I was wondering how std::cout is able to use << as it does. My main puzzlement is with whether std::cout as an instance of something. Basically, how is << defined? If I do this for a ...
18
votes
8answers
722 views

Why is address of char data not displayed?

class Address { int i ; char b; string c; public: void showMap ( void ) ; }; void Address :: showMap ( void ) { cout << "address of int :" ...
12
votes
2answers
205 views

Why is the address of this volatile variable always at 1?

I wanted to inspect the address of my variable volatile int clock; cout << &clock; But it always says that x is at address 1. Am i doing something wrong??
10
votes
3answers
152 views

Cout not printing number

Issue I'm getting no output from a simple cout, whereas a printf will always print the number: std::cout << variableuint8; // prints nothing printf("%u", variableuint8); // prints the number ...
10
votes
5answers
3k views

C++ alignment when printing cout <<

Is there a way to align text when priting using cout? I'm using tabs, but when the words are too big they won't be aligned anymore Sales Report for September 15, 2010 Artist Title Price Genre ...
10
votes
10answers
2k views

mixing cout and printf for faster output

After performing some tests I noticed that printf is much faster than cout. I know that it's implementation dependent, but on my Linux box printf is 8x faster. So my idea is to mix the two printing ...
9
votes
2answers
1k 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.
9
votes
4answers
10k views

c++ cout hex values?

I want to do: int a = 255; cout << a; and have it show FF in the output, how would i do this?
8
votes
6answers
777 views

How to determine the size of an array of strings in C++?

I'm trying to simply print out the values contained in an array. I have an array of strings called 'result'. I don't know exactly how big it is because it was automatically generated. From what I've ...
8
votes
3answers
510 views

Printing an uninitialized bool using cout (C++)

I have a class with a bool data member that is not initialized by the constructor. If I do cout << x.myBoolDataMember; where x is an object of this class in which the bool has not been ...
8
votes
2answers
294 views

cout << order of call to functions it prints?

the following code: myQueue.enqueue('a'); myQueue.enqueue('b'); cout << myQueue.dequeue() << myQueue.dequeue(); prints "ba" to the console while: myQueue.enqueue('a'); ...
6
votes
4answers
298 views

c++, cout and UTF-8

Hopefully a simple question: cout seems to die when handling strings that end with a multibyte UTF-8 char, am I doing something wrong? This is with GCC (Mingw) on Win7 x64. **Edit Sorry if I wasn't ...
6
votes
2answers
357 views

Why does this code produce a warning referring to the comma operator?

When answering this question, I came across this code... #include <iostream> int main() { int const income = 0; std::cout << "I'm sorry your income is: " < income; // this ...
6
votes
5answers
394 views

cout - what it stands for? [closed]

Possible Duplicate: What does the “c” mean in cout, cin, cerr and clog? Can someone please explain to me what cout stands for?
6
votes
5answers
247 views

Why is my string not being printed?

I have some code that, in its smallest complete form that exhibits the problem (being a good citizen when it comes to asking questions), basically boils down to the following: #include <string> ...
6
votes
3answers
5k views

Qt c++ cout, print in console

Im using Qt4 and c++ for making some programs in computer graphics. I need to be able to print some varaibles in my console in runtime, not debugging, but cout doesnt seem to work even if I add the ...
5
votes
4answers
113 views

mycout automatic endl

I'd like implement class MyCout, which can provide possibility of automatic endl, i.e. this code MyCout mycout; mycout<<1<<2<<3; outputs 123 //empty line here Is it possible ...
5
votes
7answers
233 views

Is stdout Ever Anything Other Than a Console Window?

From http://www.cplusplus.com/reference/iostream/cout/: By default, most systems have their standard output set to the console, where text messages are shown, although this can generally be ...
5
votes
5answers
343 views

C++ : cout with a terenary if-statement

I get this ERROR: "error: overloaded function with no contextual type information". cout << (i % 5 == 0) ? endl : ""; Is what I am doing possible; am I just doing it wrong, or do I have to ...
5
votes
3answers
284 views

How can I make cout faster?

Is there any way to make this run faster and still do the same thing? #include <iostream> int box[80][20]; void drawbox() { for(int y = 0; y < 20; y++) { for(int x = 0; x ...
5
votes
7answers
1k views

printf vs. std::cout [closed]

Possible Duplicate: Should I use printf in my C++ code? If I just want to print a string on screen, I can do that using those two ways: printf("abc"); std::cout << "abc" << ...
5
votes
1answer
691 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 later want to have the ...
5
votes
7answers
2k views

Assigning cout to a variable name

In ANSI C++, how can I assign the cout stream to a variable name? What I want to do is, if the user has specified an output file name, I send output there, otherwise, send it to the screen. So ...
4
votes
1answer
42 views

c++ wcout std::map value

I have a std::map called 'prompts' which is declared like this: std::map<const int, wstring, std::less<int>, std::allocator<std::pair<const int, std::wstring> >> prompts; ...
4
votes
2answers
107 views

Programatically Ignore Cout

Does anybody know if there is a trick to toggle all the cout << functions to not print out visible output? I am trying to hack together some code written by me and some other people to put ...
4
votes
3answers
116 views

Homework: Cout incorrectly handling a return value of 0.0 from a class method

First, this is homework, so I can not dynamically allocate memory for an array of any size, and I can not use a vector. I have a class which includes a double array holding 30 elements, and two other ...
4
votes
2answers
96 views

How can I check in C++ whether std::cout is redirected to a file?

I need my program to behave differently, depending on whether the output is to a terminal or to a file. How can I find this out from within C++? I assume there is no solution that works for all ...
4
votes
3answers
101 views

strange cout behaviour

I compiled on Ubuntu a program that was developed for (and works on) Windows. On Ubuntu, I see this code: string s = values_[9]; cout << s << endl; cout << s << "x\n"; ...
4
votes
2answers
141 views

C++ Format for cout << Automatically

If I had a simple class with two variables, x and y, and a function ToString() that returns a formatted string with the data. When I call cout << simpleClass << "\n"; anyone know a way ...
4
votes
5answers
730 views

Custom C++ cout class - output to both console and log file

I'm working on a program that makes heavy use of "cout << strSomething;" to log information to the console. I need to modify the program so that all console output goes to both the console AND ...
4
votes
1answer
324 views

char16_t printing

recently I had a problem with porting win app to linux because of the wchar size difference between platforms. I tried to use compiler switch, but there were problems with printing those charachters(I ...
4
votes
5answers
560 views

Indenting Paragraph With cout

Given a string of unknown length, how can you output it using cout so that the entire string displays as an indented block of text on the console? (so that even if the string wraps to a new line, the ...
4
votes
5answers
1k views

How do I correctly organize output into columns?

The first thing that comes to my mind is to do a bunch of \t's, but that would cause words to be misaligned if any word is longer than any other word by a few characters. For example, I would like to ...
4
votes
2answers
327 views

Absolute positioning in printout with cout in C++?

How do you get "absolutely positioned" columns with cout, that leftaligns text and right-aligns numbers? #include <iostream> #include <iomanip> using namespace std; struct Human { ...
4
votes
6answers
606 views

Is it possible to cout to terminal while redirecting cout to outfile?

I'm running a program and redirecting cout to an outfile, like so: ./program < infile.in > outfile.o I want to be able to read in an option ('-h' or '--help') from the command line and ...
4
votes
4answers
376 views

Why is the beginning of my string disappearing?

In the following C++ code, I realised that gcount() was returning a larger number than I wanted, because getline() consumes the final newline character but doesn't send it to the input stream. What I ...
4
votes
6answers
504 views

Can cout alter variables somehow?

So I have a function that looks something like this: float function(){ float x = SomeValue; return x / SomeOtherValue; } At some point, this function overflows and returns a really large ...
3
votes
2answers
79 views

How does cout's << operator work with regard to operator precedence? [closed]

Possible Duplicate: Unexpected order of evaluation (compiler bug?) I couldn't predict the output for this program : #include<iostream> using namespace std; int *p(int *a) { ...
3
votes
1answer
54 views

Strange interaction between popen() and printf vs. cout in C++

It's probably a long-shot that anyone can answer this without seeing all the source code and libraries, etc., but I'll try. I have a program X written in C++ using boost-1.41. If X outputs with ...
3
votes
4answers
133 views

cout to print character N times

How can I print a character N number of times using cout without looping? Is there a way to move the text cursor back to nullify the effect of cout << endl;? i.e. to move up a line (say we ...
3
votes
1answer
131 views

Why would printing a variable change its value?

I have a small function, which is supposed to make a prediction based on a machine learning algorithm. The function wasn't working, so I put a print statement in to check on the value, and all of a ...
3
votes
5answers
181 views

What's the difference between cout<<cout and cout<<&cout in c++?

This might be a beginner question and understanding how cout works is probably key here. If somebody could link to a good explanation, it would be great. cout<<cout and cout<<&cout ...
3
votes
3answers
113 views

What's the opposite of `fixed` in cout?

When using cout, what is the default formatter defined in the <iomanip> header? In other words, once I've set my formatter to fixed using cout << fixed << setPrecision(2), how do I ...
3
votes
3answers
400 views

Hide user input on password prompt [closed]

Possible Duplicate: Read a password from std::cin I don't work normally with the console, so my question is maybe very easy to answer or impossible to do . Is it possible to "decouple" cin ...
3
votes
2answers
336 views

How to make cout behave as in binary mode?

Every time I do 'cout << endl' or even 'cout << "\n"' and then launch my program under Windows to output to a file ("a.exe < test.in > result.out") I get "\r\n" line endings in ...
3
votes
3answers
111 views

c++ cout strange behavior with a custom Stack class

I have a custom stack class. Most of the code can be seen here: Member functions of a templated class, that take a template type as argument. I fill the stack like so: stack <int> Astack; ...
3
votes
2answers
1k views

How to remove last character put to std::cout?

Is it possible on Windows without using WinAPI?
3
votes
4answers
288 views

C++ why do I only get the last line?

This is the text of my program: #include <iostream> #include <string> #include <sstream> #include <fstream> using namespace std; int main(){ string line; ifstream ...

1 2 3 4