Printf Scanf C Tutorial

#include 
main()
{
    int i = 100;
    printf(" %d\n",i);
    printf(" %i\n",i);
}
100
100