What will be the output of the following code snippet?#include <stdio.h>int main() {int a = 3, b = 5;int t = a;a = b;b = t;printf("%d %d", a, b);return 0;}
#include<stdio.h>int main(){int a;for(a=0;a<2;a++)if(a%a==0){printf("%d",a);}elseprintf("%d",a*a);}