#define BIG_NUMBER 10 * 10main(){ int index = 0; while (index < BIG_NUMBER) { index = index * 8; } return (0);}