Counting the number digits in the given number

6 years ago
 NUMBER OF DIGIT IN THE  GIVEN NUMBER                                This code is to count how many digits in the given number. For example, We are entering 5627 then the output is 4.Because digits...
Counting the number digits in the given number Counting the number digits in the given number Reviewed by Amit Waghmare on January 09, 2019 Rating: 5

Check the given number is even or odd

6 years ago
EVEN or ODD c language code to check the number is even or odd: #include<stdio.h> #include<conio.h> int main() {int a; printf("\nEnter any number: "); scanf("%d",&a); if(a%2==0) {printf("\n%d is Even Number",a); } else {printf("\n%d is Odd Number",a); } return 0; } --------------------------------------------------------------------------------------------- Output: Enter...
Check the given number is even or odd Check the given number is even or odd Reviewed by Amit Waghmare on January 04, 2019 Rating: 5

C language code for Armstrong Number

6 years ago
 ARMSTRONG NUMBER                                        An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself....
C language code for Armstrong Number C language code for Armstrong Number Reviewed by Amit Waghmare on January 04, 2019 Rating: 5
Page 1 of 81238Next