#include stdio.hFind the output of the following code : -int main() {int a = 3, b = 5;int t = a;a = b;b = t;printf("%d %d", a, b);return 0;}
Study the following statementfor (i = 3; i 15; i + = 3){printf ("%d", i);++i;}What will be the output?
Class Demo1{public static void main (String [] args){PowerOfNumber(2,3);}public static void PowerOfNumber(int a, b){Int res=a^b:System.out.println(res) ;}}