fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=0200;
  5. printf("Octal value of a:%o",a);
  6. printf("\ninteger value of a:%d",a);
  7.  
  8.  
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4412KB
stdin
Standard input is empty
stdout
Octal value of a:200
integer value of a:128