Download this file
1 2 3 4 5 6 7 8 9
#include <sys/types.h> #include <iostream> using namespace std; int main() { cout << "Size of 'off_t' type is " << sizeof(off_t) * 8 << " bits." << endl; }