int main() { int var = 01; int cnt = 0; int siz; while(var) { var << = 1; cnt++; } siz = cnt/8; printf("size of integer %dn", siz); return 0; }