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 () { ...
basic C programs / C / C codes / conversions / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published September 5, 2015 · Last modified February 27, 2017
Example: Octal = 123 Decimal= 1×8²+2×8¹+3×8⁰ = 83 Program (Octal to Decimal Conversion): #include<stdio.h> #include<math.h> int main () { ...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 28, 2015 · Last modified February 27, 2017
Description: This program accepts Three integers as input and calculates the Minimum number. Program : #include<stdio.h> int main() {...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 25, 2015 · Last modified February 27, 2017
Description: This program accepts Three integers as input and calculates the Maximum number. Program : #include<stdio.h> int main() {...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 24, 2015 · Last modified February 27, 2017
Description: This program accepts one integer from the user and Generates Reverse of given number. Program : #include<stdio.h>...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 23, 2015 · Last modified February 27, 2017
Description: This Program accepts one Integer from user and stores that value into the variable n. Then calculates...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 22, 2015 · Last modified February 27, 2017
Description : This program accepts one Integer from user and calculates the Sum of the individual digits of...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 14, 2015 · Last modified February 27, 2017
Description: This program accepts one value(float value) from user and stores it into radius parameter. Then it will...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published February 7, 2015 · Last modified February 27, 2017
Description : This program accepts one integer from user and checks given number is positive or negative. Program...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published January 31, 2015 · Last modified February 27, 2017
Description: This program accepts one Integer value from user and checks if the given number is Even number...
basic C programs / C codes / Mathematical C programs / Uncategorized
by Venkatesh Macha · Published January 4, 2015 · Last modified February 27, 2017
Armstrong Number Program in C: #include<stdio.h> int main() { int num,rem,temp,sum; printf(“Enter any Number : “); scanf(“%d”,&num);...
Basics of C / C / C language / C tutorial
Decision making statements if and if…else in C
9 Dec, 2018
Admin / RTP / rtpengine / ubuntu / Uncategorized / VOIP
Installing RTPEngine on Ubuntu 14.04
17 Aug, 2015