C Program To Convert Octal To Decimal Number In One Line
Satish B
http://technotip.com/7026/c-program-to-convert-octal-to-decimal-number-in-one-line/
Lets write a C program to convert a number from Octal number system(base 8) to Decimal number system(base 10) in one line.
Expected Output for the Input User Input: Enter an Octal number 41
Output: Decimal Representation of Octal Number 41 is 33.
Logic To Convert Octal To Decimal Number In One Line of Code In c programming language, any octal number(%o format specifier) you store will also be stored in decimal form and you can print it using %d format specifier.
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=ifkQ4wDsE6I
4498072 Bytes