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;}
What will the output after execution of the following statements?main(){printf ("\\n ab");printf ("\\b si");printf ("\\r ha");}