#includestudio.hint main(){int i,j,k,count;count=0;for(i=0;i5;i++){for(j=0;j5;j++){count++;}}printf("%d",count);return 0;}
#includestdio.htypedef struct BankAccount{int acct_no;char name[100];}acc;int main(){acc acc1={123, "me"};acc acc2={124, "him"};acc acc3={125, "her"};printf("account number is = %d",acc1.acct_no);printf("name=%s",acc1.acct_no);return 0;}
#include stdio.hint main(){int m= (2 + 4 )/ 2 + 6 * 2;printf("%d", m);return 0;}
def add(a,b):What will be the output of this python codeSum =a+breturn sumaddition=add(1,2)print(addition)
#includestdio.hint main(){const int b = 10;printf("%d",++b);return 0;}
What is the output of the following code?#include stdio.hint main(){int a = 2, b = 7;int t = a;a = b;b = t;printf("%d %d", a, b);return 0;}