printf(*quot;%+d", 7); # prints '+7' [download]
should be:
printf("%+d", 7); # prints '+7' [download]
In reply to Re^2: Using (s)printf() by toolic in thread Using (s)printf() by reptile