Int to Octal conversion in C

#include <stdio.h>

int main( )
{
 int ivalue = 1234;
 
 printf("%o",ivalue); 
}