For a project I want to be able to add a dollar sign before variable money, and add a decimal 2 spaces to the left, I’ve tried dividing money by 100, but the answer is way off. Along with negative numbers. #include <stdio.h> void printmoney(int money) { printf(“$ %d”,(money / 100)); return 0; } intRead more