views:

25

answers:

1

Hello guys! I have a question How will you determine the page size of a unix machine using C code?

+2  A: 

getpagesize() or sysconf().

Artelius