1.

Write a program to input two digit number and find its last digit and find it's cube using pow function ​

Answer»

C PROGRAM to Find LAST Digit Of a Number */ #include int main(){ int Number, LastDigit; printf("\n PLEASE Enter any Number that you wish : "); scanf("%d", & Number); LastDigit = Number % 10; printf(" \n The Last Digit of a Given Number %d = %d", Number, LastDigit); return 0;}Explanation:please Follow me



Discussion

No Comment Found