write a program to find the last digit of given number; code example
Example: code to find the last digit of a number
int n;
cout<<"Enter the number";
cin>>n;
int LD= n % 10;
cout<<LD<<endl;
int n;
cout<<"Enter the number";
cin>>n;
int LD= n % 10;
cout<<LD<<endl;