Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote this code:

#include <iostream>
#include <string>
using std::string;

int main( void )
{
    std::cout.flush();

    string portF("PORTOFINO IM SOMMER 2012");
    // You have to end this statement with semi colon
    std::cout<<portF;
    portF.erase(0,5);
    portF.insert(3,"IT");
    portF.erase(7,3);
    portF.insert(13,"SEMESTER");
    portF.append("!");
    // Similarily here
    std::cout<<portF;

    return 0;
}

I need to see whats the output but nothing appear in the screen, I think the problem is with the cout:

share|improve this question
2  
add << std::flush – Andrew Jul 2 '12 at 11:45
thank you but where ? – Mamdouh Jemaiel Jul 2 '12 at 11:47
Which IDE are you using for compiling and running the code? – gibraltar Jul 2 '12 at 11:47
1  
i reallyyyyy need it at 14h , i still have 5 minutes so please tell me the output – Mamdouh Jemaiel Jul 2 '12 at 11:55
1  
The code works fine as is. Are you sure you didn't get output? Can you see the Debug Console area? Command+Shift+C will activate the Debug Console if it's not already showing. – bames53 Jul 2 '12 at 13:09
show 6 more comments

closed as not a real question by casperOne Jul 3 '12 at 11:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

cout is buffered. Call cout.flush() or add << std::flush to the output before getch() to force the output to be shown.

The problem occurs because you are mixing C++ streams and a plain c input method. You should use cin.get() instead. That should automatically flush the output before waiting for input.

share|improve this answer
3  
or std::endl to add a new line and flush at the same time – catchmeifyoutry Jul 2 '12 at 11:47
i updated the code but no output :( – Mamdouh Jemaiel Jul 2 '12 at 11:53
RedHerring: The buffers are automatically flushed when the applications exits. The mixing of C/C++ is not a problem: the C++ streams are by default coupled to the C streams to prevent this kind of problem it takes special effort to decouple them. – Loki Astari Jul 2 '12 at 12:23

are you sure you are running it correctly? because i just tried your program and the output is there!

and yeap as Anders said endl should do the trick as well!endl should also append the next set of things you output with cout to the next line on the console, which maybe what you are after!

share|improve this answer
whats the output please ? – Mamdouh Jemaiel Jul 2 '12 at 11:52
i thing i will work with another ide , xcode is too complicate – Mamdouh Jemaiel Jul 2 '12 at 11:52
this was the output PORTOFINO IM SOMMER 2012FINITO SOMMERSEMESTER 2012! – cptdanko Jul 2 '12 at 13:34
the system where i tested it was, ubuntu with g++4.6, you are probably getting it to compile with Clang? i am not sure so do look up your compiler – cptdanko Jul 2 '12 at 13:35

Not the answer you're looking for? Browse other questions tagged or ask your own question.