?? getpagesize.c
字號:
#include <stdio.h>#include <unistd.h>int main(){ char *comments[] = { "This file is auto-generated. Please do not edit.", "This value is the result of the getpagesize() call.", "We need this trickery to get a compile-time value for the page size.", NULL }; char **p = comments; while (*p != NULL) { printf("/* %s */\n", *p); p++; } printf("\n"); printf("#define CURRENT_PAGE_SIZE (%d)\n", getpagesize()); return 0;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -