Skip to content

TRUEANGLE

BEAUTY AND PLAY

  • GitLab
  • GitHub
  • Configuration
  • AI
  • BLOG
  • LINUX
  • ABOUT
    • ABOUT
    • Perception Style
    • Motivation

Tag Archives: curses

How to write a program using ncurses library to move cursor to a point on logical screen ?

#include <unistd.h> #include <stdlib.h> #include <curses.h> int main() { initscr(); move(5,15); printw(“%s”,”Hello World”); refresh(); sleep(2); endwin(); exit(EXIT_SUCCESS); }

Posted byjeffrinJune 6, 2014Posted inC, operating system, Programming LanguagesTags: curses, Graphics, library, ncurses
July 2026
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  
« Jun    
TRUEANGLE, Proudly powered by WordPress.