# include <stdio.h>
/** Passing pointers to a function **/

void increase(int *x)
{
	*x=*x+1;
}

int main()
{
	int value;
	printf("Enter value ?");
	scanf("%d",&value);
	increase(&value);
	printf("Now value is %d \n",value);
	return 0;
}
