You should first make the pointer point to some existing integer:
1 2
int a;
plen = &a;
or
create an integer using newplen = newint;
you should also initialise the new int or assign it some known value before you carry out the operation in line 3 of your code, because that operation takes the existing value of *plen and adds to it.