Advertisement
thecplusplusguy

ncurses tutorial 1

Jun 27th, 2012
1,262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. //http://www.youtube.com/user/thecplusplusguy
  2. //Thanks for the typed in code to Tapit85
  3. #include <ncurses.h>
  4.  
  5. int main()
  6. {
  7.     initscr();
  8.     printw("Hello World");
  9.     refresh();
  10.     getch();
  11.     endwin();
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement