我无法在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;
}