What is the output of the following code?int main(){int a=0, b=20;if(!(!a) && a)printf("%d",a++);elseprintf("%d",b--);}
What will be the output of the following code?count = 0while(True):if count % 3 == 0:print(count, end = " ")if(count > 15):break;count += 1