Skip to content
Related Articles
Open in App
Not now

Related Articles

Octal literals in C

Improve Article
Save Article
Like Article
  • Last Updated : 19 Aug, 2018
Improve Article
Save Article
Like Article

When we initialize a value by putting ‘0’ before a number, the number is treated as octal. For instance ’10’ is read as 10 but ‘010’ is read as 8.

Examples:

Input : 0101
Output : 65

Input : 01010
Output : 520




#include<iostream>
using namespace std;
int main()
{  
    int x = 0101; 
    cout << x; 
    return 0;
}

Output:

65




#include<iostream>
using namespace std;
int main()
{  
    int x = 020; 
    cout << x; 
    return 0;
}

Output:

16




#include<iostream>
using namespace std;
int main()
{  
    int x = 090; 
    cout << x; 
    return 0;
}

Output :

Compiler Error : 9 is not a valid digit in octal number.

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!