This repository has been archived on 2025-02-24. You can view files and clone it, but cannot push or open issues or pull requests.
secusend/main.c
2025-02-16 09:33:43 +13:00

12 lines
274 B
C

#include <ncurses.h>
int main() {
initscr(); /* Start curses mode */
printw("Hello World !!!"); /* Print Hello World */
refresh(); /* Print it on to the real screen */
getch(); /* Wait for user input */
endwin(); /* End curses mode */
return 0;
}