I'm using sanserif.
can someone tell me how to cause sprintf to print the degrees symbol?
I would like to place it after the third %d in the following code.
sprintf (pictureInfo, "X %d Y %d angle %d\n %d X %d pixels\n %s\n %3.3f X %3.3f inches\n",
picture[selection].posX,
picture[selection].posY,
picture[selection].angle,
picture[selection].dimsCx,
picture[selection].dimsCy,
path,
picture[selection].pSizeCx,
picture[selection].pSizeCy
);
Thanks for the help, DJ