Skip to main content



      Home
Home » Language IDEs » C / C++ IDE (CDT) » simple pRoGram(nO conSoLe)
simple pRoGram [message #1090132] Mon, 19 August 2013 14:52
Eclipse UserFriend
/*
 * main.cpp
 *
 *  Created on: Aug 19, 2013
 *      Author: Arbol One
 */
#include <iostream>
#include <string>
#include <cstdio>

int main(){
	setvbuf(stdout, NULL, _IONBF, 0);
	setvbuf(stderr, NULL, _IONBF, 0);

	std::cout << "Yap, it is working" << std::endl;
	std::cin.get();
	return 1;
}

This is a very simple program, yet not console display. Can anyone help?

I need to have console display, you know... the black windows that we get when using any other IDE.

Thanks
Previous Topic:Issue with Running C++ - Launch Failed. Binary Not Found
Next Topic:warning
Goto Forum:
  


Current Time: Thu May 15 12:27:04 EDT 2025

Powered by FUDForum. Page generated in 0.03421 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top