Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Output in the screen in console mode

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How can I get what's printed in the screen, for example
....
printf("Hello");
....
how get what's in the screen ???
 
// it.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

int main(int argc, char* argv[])
{
printf("Hello World!\n");
return 0;
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top