#include stdio.hvoid main(){short a=2;switch(a){case 1L:printf("Archana\n");break;case 2L:printf("Aru\n");break;default:printf("Archu\n");break;}}
What is the output of the following program?i = 0while i 5:print(i)i += 1if i == 3:breakelse:print(0)
What is the output of the following code?#includestdio.hint m;int main ( ){printf("%d",m);return 0;}
Package com.mypackage;Public class Solution{Private int res = 111;}
#includestdio.hint main(){int a = 4, b=5, c=13;int x ;x = a+(bc)*a+a*(ab);printf("%d", x);return 0;}