#include <stdio.h>
//Simple Pointer example by JayWare
void SetV(int *iDate)
{
printf("This is the original value: %d\n",*iDate);
*iDate = *iDate + 1;
printf("This is the New value: %d\n",*iDate);
}

void main(void)
{
	int dDate = 9;
	SetV(&dDate);
	printf("This is the New Value also: %d\n",dDate);
		SetV(&dDate);
	printf("This is the New Value also: %d\n",dDate);
}