Trying to make a program which determines whether an ISBN number is valid. What is wrong with this:
#include <stdio.h>
#include <math.h>
int main()
{
int done, dtwo, dthr, dfor, dfiv, dsix, dsev, deig, dnin, dten, mod;
printf("Please enter a 10 digit ISBN number: \n ")...