Bitwise interview question

Execute if and else blocks simultaneously.

Interview Answer

Anonymous

Jan 5, 2025

#include using namespace std; int main(){ if(0){ lable1: cout<<"hello "; goto lable2; } else{ goto lable1; lable2: cout<<"this is akash"<