Answer:
int counter( )
{
static int xvalue = 0;
return(xvalue++);
}
Explanation:
The first line of code declares the function and its return type integer. Then we create a static variable xvalue and initialize to 0. the statement return(xvalue++) ensures that at each method call, the value of integer is increased by 1