buddhikaneel
Member level 1
Hi.
int xArray[10];
long xNo;
I want to convert xarray into xNo. How can i do it
xArray[0]=1;
xArray[1]=2;
xArray[2]=3;
xArray[3]=4;
xArray[4]=5;
xArray[5]=6;
xArray[6]=7;
xArray[7]=8;
xArray[8]=9;
xArray[9]=0;
result could be
xNo=1234567890;
____________________________________
Can you tell me is there another way to do this.
I will reading Keypad Keypress into that array. Finally i want to 10 Digit long data from which is last pressed 10 keypad strocks.
what can i do..?
int xArray[10];
long xNo;
I want to convert xarray into xNo. How can i do it
xArray[0]=1;
xArray[1]=2;
xArray[2]=3;
xArray[3]=4;
xArray[4]=5;
xArray[5]=6;
xArray[6]=7;
xArray[7]=8;
xArray[8]=9;
xArray[9]=0;
result could be
xNo=1234567890;
____________________________________
Can you tell me is there another way to do this.
I will reading Keypad Keypress into that array. Finally i want to 10 Digit long data from which is last pressed 10 keypad strocks.
what can i do..?