std::cout is the global stream object provided by the C++ standard library for writing to the standard output stream.

learn more… | top users | synonyms

0
votes
1answer
44 views

cout print string variable cannot pass the build

Could any one help me to figure out which the following code cannot build successfully: #include <iostream> int main(void){ std::string str1("sfsfasfdsdf"); std::cout << str1 ...
0
votes
2answers
95 views

Weird bug with floats in if-statement

So in my C++ code I have the following line of code for debugging purposes: if(float1 != float2) { std::cout<<float1<<" "<<float2<<std::endl; } What's happening is that ...
1
vote
2answers
59 views

Inputing a string to an int produces wrong output in c/c++

#include <iostream> #include <string> using namespace std; int main() { // Declare a variable to store an integer int InputNumber; cout << "Enter an integer: "; // store ...
0
votes
1answer
54 views

Making a console progress bar? (Windows)

So I have a function (or rather, I'll turn it into a function later) to make a random % progress in a console window; like this: #include <iostream> #include <time.h> #include ...
-2
votes
2answers
44 views

c++ “cout << number” results with printing “number%” to the screen

I have a strange problem, simple program, f.e. main() { int i=1; std::cout << i; } Results with 1% on screen. I can't get rid of that "%". Does anyone know what is going on? I am ...
3
votes
2answers
71 views

Ofstream returning garbage. Cout works… Why doesn't ofstream?

So I'm trying to design a program that inputs a file and then reads through the lines and takes each line and outputs info about it to a new file. I have it all down... except! All my .txt files are ...
0
votes
2answers
31 views

How to do parsing istringstream C++?

I need to print some data from stream - istringstream ( in main () ). example: void Add ( istream & is ) { string name; string surname; int data; while ( //something ) { ...
0
votes
2answers
69 views

Console::WriteLine() vs. cout

I've just started trying to teach myself C++ (I've been a C# programmer for about a year now) and I can't understand for the life of me what the difference is between Console::WriteLine("Hello World") ...
5
votes
1answer
59 views

C++ streamsize prec = cout.precision(3) - How does it work?

I am kind of newbie in using c++. I have a quick question, probably a dumb question. streamsize prec = cout.precision(3); As I understand correctly this declaration works like that: set the cout ...
0
votes
2answers
52 views

C++ : extern variable inside namespace and printf vs cout

i have a little problem with printf and i don't know why ! =>kernel.h #ifndef KERNEL_H #define KERNEL_H namespace kernel { extern const double h; } #endif // KERNEL_H =>kernel.cpp #include ...
2
votes
2answers
53 views

Will std::cout affect timers?

I have a graphics program, and I want to measure the time certain function calls take. Since I am not sure how std::cout works under the hood, I wanted to ask if calls to it in between timer calls ...
1
vote
4answers
80 views

How to write a function wrapper for cout that allows for expressive syntax?

I'd like to wrap std::cout for formatting, like so: mycout([what type?] x, [optional args]) { ... // do some formatting on x first std::cout << x; } and still be able to use ...
-3
votes
1answer
73 views

cout doesn't print string in C++ (include<iostream>, inlcude<string>, and flush all present)

Hi Thank you and let me try to make this simple :) MY CODE: there is an array in the class "table" to hold newly added book (struct); add just put in one next to one in the array; search can use ...
0
votes
2answers
25 views

order of execution in do/while loop

I took the following example literally from Walter Savitch Absolute C++ book. It works (as one would expect from a scholar such as Walter Savitch). However, I am puzzled why as I will explain after ...
2
votes
2answers
74 views

Calling function in C++

I'm trying to call a function with no return type but it doesn't seem to be getting called. The code looks something like this(summarized): #include <iostream> #include <cstdlib> ...
1
vote
1answer
68 views

Game menu not working C++

So I've got a game that when I run it, begins by calling the function menu(). For some reason it won't take the input and correctly go the to next step. Any ideas? void menu() { char x = -1; ...
1
vote
2answers
45 views

Where is my program's stdout's setbase(16) being called?

I have a somewhat large project that I am working on and I've discovered that someone added some code something similar to this: std::cout << std::hex << variable << endl; Aside ...
0
votes
1answer
32 views

Output Multidimensional Vector of Objects

So, I am trying to simply print the content of the vector that I am creating. Essentially I am trying to output the player which would be an int (i.e. 1-4) and the player's hand which consists of Card ...
0
votes
3answers
70 views

printing text-value of enum, not the value

I want to print the text value of an enum, if I enter 5, it will print F1. If i enter 63, it has to print H8. In the code below, I tried cout << "You chose: " << board_square(chosen_piece) ...
-2
votes
4answers
80 views

How to get rid of Cout text c++ [closed]

Hello so I made a program that takes two inputs (firstNumber, secondNumber). Then it outputs the sum of them. so the total thing would like this: Please Enter Your First Number: 3 Please Enter Your ...
2
votes
2answers
81 views

c++ Closing cout properly

I wanted to write a daemon which acts as a remote shell. As such I have to close stdin, stdout and stderr. Now I would like to know how this is properly done. std::streambuf * old = ...
0
votes
3answers
57 views

C++ unexpected hangtime

I am trying to write a function in my program that loads a huge text-file of 216,555 words and put them as strings into a set. This works properly, but as expected, it will hang for a few micro ...
1
vote
1answer
45 views

Templates for cout input

I want to create a function that takes in anything that the << operator for std::cout can handle. I have an example that breaks. #include <iostream> template <typename T> void ...
1
vote
2answers
69 views

C++ program exits abnormally when outputting integers

I have this question in cout command in my computer. I use MingW and Netbeans for the learning of C++. I tried to compile and run a program with the following code. #include <iostream> int ...
0
votes
0answers
13 views

Setting std::io_base flags for custom stream class

I have a custom class called Stream class Stream public: Stream& operator<<(int i) { stream_ << i; return *this;} template <typename CustomClass> ...
-1
votes
1answer
71 views

C++ Problems Displaying Doubles with cout

I have this simple class and can't figure out how to get the doubles to display properly. Currently the are displayed as "0.00". Without 'showpoint' and 'setprecision()' they were displaying as random ...
-7
votes
2answers
65 views

C++ printing boolean, what is displayed? [closed]

When I do something like: bool myvar = false; cout<<false<<endl; What actually gets printed? Is it 1 for true, 0 for false?
2
votes
3answers
117 views

Using the console in a GUI app in windows, only if its run from a console

My application is a GUI app that has helpful (though optional) information through the terminal (via cout). In Windows I either have a console appear (by compiling as a console app, or allocating it ...
2
votes
1answer
84 views

same locale, different output

I try to print UTF-8 string to windows console. The code page of console is set to 65001 (utf-8), the font is set to lucida console and the c++ source file encoding is utf-8 without bom. Consider the ...
-4
votes
2answers
70 views

What is the fastest text rendering method in a command prompt when using C++

ATM I'm working on a game so I'm looking for a method to render an entire area of chars in' a blink of an eye. Now I'm having trouble with slow rendering speeds (or rather printing speeds to be ...
0
votes
1answer
55 views

An “atomic” call to cout in MPI

I am interested in whether there is a command or a technique within OpenMPI to have an atomic call to write to stdout (or, for that matter, any stream). What I have noticed is that during the ...
0
votes
2answers
62 views

missing cout before segmentation fault

I had a segmentation fault in my code, so I put many cout on the suspicious method to localise where. bool WybierajacyRobot::ustalPoczatekSortowania(){ cout << "ustal poczatek sortowania: ...
0
votes
1answer
78 views

cin / cout being skipped

I've been writing a sample program to compare runtimes of some algorithms, and this one has been causing me some trouble. For some reason, cin / cout is randomly skipped at various parts throughout ...
2
votes
4answers
137 views

what is the difference between printf and cout [duplicate]

Some code like this below: int x = 1; printf("%d,%d,%d",x,x++,x); //A statement cout<<x<<x++<<x<<endl; //B statement I know the execute sequence is from right to ...
4
votes
2answers
195 views

Different Results of Monte Carlo Integration Due To Output

I've just recently stumbled upon a C++ bug/feature, that I can't fully understand and was hoping someone with a better knowledge of C++ here could point me in the right direction. Below you will find ...
-3
votes
3answers
138 views

C++ printing floating point numbers

Is there a single best way to print floats (i'm using long doubles)? I have tried a few ways but none of them seems to work for all type of numbers. Let me illustrate. I have three print statements. ...
0
votes
2answers
75 views

Output aligned columns

I am learning C++. I have a problem formatting the output of my program. I would like to print there columns perfectly aligned but so far I cannot do it, here is my code: int main() { employee ...
1
vote
3answers
76 views

How to properly print a double to cout in C++

I've had a look at some questions before posting this and couldn't find what I was looking for, so if it's a duplicate I'm sorry. I have this code: cout << "The balance at year " << i ...
0
votes
0answers
70 views

Tons of errors when compiling “Hello World” [closed]

I'm compiling "hello world" using Nvidia Nsight: #include <iostream> int main () { std::cout << "Hello World!" << "\n"; return 0; } The IDE is complaining that "cout" cannot ...
1
vote
3answers
128 views

No match for 'operator<<' in std::cout

I am developing gsoap web service where I am retrieving vectors of objects in return of a query. I have two ways to do it: first by simple loop and by iterator. None of them working. The error is: ...
0
votes
3answers
107 views

Line spacing after endl and cout?

I noticed that in the following code: cout << "Please enter your number: "; cin >> Number; cout << "Is this spaced"; The output in the command window for C++ ...
1
vote
1answer
73 views

How to use C++ streams with a c_str() library API.

Hi here is my code snippet: RIT128x96x4StringDraw(HWREGBITW(&g_ulFlags, 0) ? "1" : "0", 48, 32, 15); This is only used to print some string on the screen. I want a function or means to print ...
-1
votes
5answers
171 views

C++: Questions about using namespace std and cout [duplicate]

Why do I need to type in using namespace std; in order to be able to use cout and endl? Also what are these called; is cout a function? Is there cout in C? I heard it was implemented in C++ ...
1
vote
5answers
70 views

cin failing to get the input

I want to be able to read the following: myvar = { 1 2 3 5 } So what I've done is string input; int intInput; cin >> input; //take in the varname, do stuff cin >> input; // check to ...
0
votes
1answer
68 views

Combine console-based and windows-based application

Although I am using DirectX with a usual WinMain function in my application it happens that I want to create output to the console (with usual std::cout) if the application was started with specific ...
1
vote
4answers
90 views

C++ problems with dividing and cout

I am doing an assignment for Computer Science. We have to make a batting average program. I have it working so that it will calculate the hits, outs, singles, etc. but when it comes to making it ...
1
vote
1answer
44 views

counting and interpreting characters from position 1 to 27 on one line of text [closed]

I'm brand new to C++ but I can read the tutorials on it for getting the syntax and libraries/methods I need to do this (I think). What I have to do is write a small program in C++ to parse the ...
1
vote
2answers
102 views

atoi() method, char * cout

This is an atoi() I am trying to understand. In order to compile with the non-existing library, I called it m(). There are several lines of codes I am confused about, mainly char * issues. My ...
0
votes
2answers
86 views

C++ Variable Zero Correction

The variable "probability" always comes out to zero even though the outputs of the other variables are in the same placement area as the probability variable at the end of the program. I have a ...
2
votes
1answer
118 views

Why does << operator cut off characters with cout?

I am using std::getline in a while loop and printing the output with cout, I find that the beginnings of my line are being cut off when I am printing: works as expected: std::string line; ...

1 2 3 4 5 9