Declare a pointer and initialize a variable to some value. Store the address of the variable to the pointer and Increment by 11 using pointer and print the value. Test Case 1 Input (stdin) 5 Expected Output 16 Test Case 2 Input (stdin) 25 Expected Output 36
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin>>a;
cout<<11+a;
return 0;
}