Skip to content

SillyCodes

  • Home
  • C Tutorials
  • C Programs
  • C Patterns
  • Linux
  • VoIP
  • About
  • Home
  • Privacy Policy
  • Disclaimer !
  • Contact Me

SillyCodes

  • Home
  • C Tutorials
  • C Programs
  • C Patterns
  • Linux
  • VoIP
  • About

Category: conversions

1

basic C programs / C / C codes / conversions / Mathematical C programs / Uncategorized

September 5, 2015

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;  ...

Follow:

  • Basics of C Programming
    • History of C Language
    • Low-Level Languages
    • High-Level Language
    • Machine Language/Code
    • Features of C Language
    • Hello World Program In C
  • Elements of C language
    • Character Set of C
    • Keywords of C
    • Operators in C
    • Constants In C
    • Identifiers in C
    • Variables in C
    • Escape Sequences
    • Datatypes in C
    • Size and Ranges of Datatypes
    • Comments in C
    • Statements in C
    • Format Specifier In C
  • Operators In C
    • Arithmetic Operators in C
    • Assignment operator in C
    • Division operator behavior
    • Modulus Operator in C
    • Increment(Pre/Post) Operators
    • Pre/Post Increment Examples
    • Pre/Post Decrement
    • Relational Operators
    • Conditional Operator
    • Logical Operators
    • Comma Operator
    • Sizeof Operator
    • Bitwise Operators
    • Bitwise OR Operator
    • Bitwise AND Operator
    • Precedence and Associativity
  • Random Articles
    • Compilation Stages in C
    • Structure of C Program
    • Procedural Vs Structured Language
    • Command Line Arguments
    • Different Methods to SWAP
  • Home
  • C Tutorials
  • C Programs
  • C Patterns
  • Linux
  • VoIP
  • About

SillyCodes © 2021. All Rights Reserved.