无法在新窗口上打印,导致空白窗口

时间:2019-01-03 16:33:16

标签: c window ncurses

我无法在c中的以下代码创建的新窗口中打印内容。

在输出中只有空白窗口,但没有打印“开始”。

#include <ncurses.h>    
#include <stdio.h>

int main(){
        int a=50,b=50;
        initscr(); curs_set(0);
        mvprintw(a,b,"start");   //this line is not working
        getch();
        endwin();
        return 0;
}

0 个答案:

没有答案