#include<stdio.h>int c[10] = {1,2,3,4,5,6,7,8,9,10};main (){int a, b=0;for(a=0;a<10;++a)if(c[a]%2 == 1)b+=c [a];printf("%d", b);}
What will be the output of the following code ?#include<stdio.h>int main (){printf("string 01 ");printf("string 02 ");printf("string 03 ");printf("string 01 \n");printf("string 02 \n");return 0;}