Linux C编程——在指定位置输入指定长度的字符串


#include <curses.h>


int main(){
    initscr();

    char name[9] = {0};

    mvaddstr(4,10,"user:[         ]");

    int r = mvgetnstr(4,16,name,8);

    mvprintw(7,10,"---->%s\n",name);


    refresh();
    getch();
    endwin();

}


你可能感兴趣的:(Linux C编程——在指定位置输入指定长度的字符串)