void savePhoneNotoEeprom(void)
{
	char p;
	char addr=0x40;
//	int i=0,totalDigit=8;
	int totalDigit=0;

	/* total digal */
//	printf("\nEnter total No. of phone Digit : ");
//	scanf("%d",&totalDigit);					// save the total of phone digit.
//	saveChar(addr,totalDigit);

	/* phone no */
	printf("\nSave phone no. to Eerpom");
	printf("\nNo? : ");
//	i=0;
	do											// save the phone no to Eeprom
	{
		scanf("%c",&p);							// get phone No.
//		saveChar(addr+1,p);						// save phone No.
		//i++;
		totalDigit++;
		addr++;
//	}while(i<totalDigit);
	}while(p!='\n');
	printf("\n%d",totalDigit);
}