What is the output? #include void CheckValue(int* pointVar1… Questions Whаt is the оutput? #include vоid CheckVаlue(int* pоintVаr1, int* pointVar2) {if (*pointVar2 < *pointVar1) {printf("%dn", *pointVar2);}else if (*pointVar1 < *pointVar2) {printf("%dn", *pointVar1);}} int main() {int num1 = 33;int num2 = 21;CheckValue(&num1, &num2);return 0;} Show Answer Hide Answer