gpt4 book ai didi

c - getmaxyx 如何改变传递变量的值?

转载 作者:行者123 更新时间:2023-12-05 09:36:59 24 4
gpt4 key购买 nike

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

int main() {

initscr();

int height, width;
getmaxyx(stdscr, height, width);

endwin();

printf("width : %i\n", width);
printf("height : %i\n", height);

return 0;
}

结果是
宽度:148
高度:38

如何在不传递指针的情况下更改宽度和高度

最佳答案

如果您阅读 https://linux.die.net/man/3/getmaxyx你会看到:

Notes All of these interfaces are macros. A "&" is not necessarybefore the variables y and x.

关于c - getmaxyx 如何改变传递变量的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64636654/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com