C Program to find sum of all digits of number
Here is the C program to find the sum of all digits of number. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() { int n,s; clrscr(); ...
Here is the C program to find the sum of all digits of number. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() { int n,s; clrscr(); ...
Here is the C Program to find square root of the enter number. Here the in built function is used for that the header file math.h is included. #include<stdio.h> #include<conio.h> #include<math.h> void main() { ...
Here is the C program in which we have to find the minimum number between two numbers using if-else statement. #include<stdio.h> #include<conio.h> void main() { int a,b; ...
Here is the C program to find maximum between two numbers using the if-else statement #include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); ...