Hello!
There is one simple thing i do not understand in the following:
char list[20]="12934225005";
int count,d1;
count=strlen(list);
for(int j=0;j<count;j++)
d1=list[j]-'0';
cout<<d1;
---------------------------------------------
As a result d1 contains 5;
What is the meaning of 5?
Ana if i do "d1=list[j] " d1 has 53.
What is 53?
Thank you very much. for your help