Printf Scanf C Tutorial

#include 
main()
{
    printf("%+d\n", -25);
    printf("%+d\n", 25);
}
-25
+25