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;}
int * aPtr;*aPtr = 100;cout << *aPtr + 2;
#include<stdio.h>int check(int);int main(){int i=46, c;c = check(i);printf("%d\n", c);return 0;}int check(int ch){if(ch >= 45)return 100;elsereturn 10;}