Latest C Aptitude Question SOLUTION: whta is the ouput if we execute this code #include extern int x; int main() { do{ do{ printf("%o",x); } while(!-2); } while(0); } return 0; }int x=8;