#include <stdio.h>

/* Printing an integer n different formats */

int main( ) {
    int j = 15;
    printf("The value of j is %i \n", j);
    printf("In octal notation: %o \n", j);
    printf("In hexadecimal notation: %x \n", j);
    printf("Idem with capitals: %X \n", j);
}
