Consider the following incorrect C program to compute the normal form of a rational number: typedef struct { int numr; int denr; } RATIONAL; int main() { RATIONAL r ...