#ifndef __CINT__ #include #include "Rtypes.h" using namespace std; #endif void reclen () { struct record_t { Int_t x; Int_t y; Int_t z; } rec; cout << "Record Length=" << sizeof(rec) << endl; } #ifndef __CINT__ int main() { reclen(); } #endif