Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Int to Octal conversion in C

#include <stdio.h>

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