c program to convert octal number into the Decimal number.
Example: Octal = 123 Decimal= 1×8²+2×8¹+3×8⁰ = 83 Program (Octal to Decimal Conversion): #include<stdio.h> #include<math.h> int main () { int decimal=0, i=0, rem=0,n,n1; ...
Example: Octal = 123 Decimal= 1×8²+2×8¹+3×8⁰ = 83 Program (Octal to Decimal Conversion): #include<stdio.h> #include<math.h> int main () { int decimal=0, i=0, rem=0,n,n1; ...
Description: This program accepts Three integers as input and calculates the Minimum number. Program : #include<stdio.h> int main() { int a,b,c,min;...
Description: This program accepts Three integers as input and calculates the Maximum number. Program : #include<stdio.h> int main() { int a,b,c,max;...
Description: This program accepts one integer from the user and Generates Reverse of given number. Program : #include<stdio.h> int main() {...
Description: This Program accepts one Integer from user and stores that value into the variable n. Then calculates the Sum...
Description: This program accepts one value(float value) from user and stores it into radius parameter. Then it will calculate the...
Description : This program accepts one integer from user and checks given number is positive or negative. Program : #include<stdio.h>...
Description: This program accepts one Integer value from user and checks if the given number is Even number or Odd...
Armstrong Number Program in C: #include<stdio.h> int main() { int num,rem,temp,sum; printf(“Enter any Number : “); scanf(“%d”,&num); ...
Description : This program accepts one integer number as input and generates prime numbers up to that number. This program...