I have a small question. Is it possible to handle data type mismatch exceptions in C?
In C++ and other higher-level languages, the code is usually surrounded by try...catch. However, since there is no exception handling mechanism in C, how do we handle data type mismatch exceptions?
For instance, let us assume that I have a program that requires the user to enter an integer number. If the user hits an alphabetic character by mistake, the program crashes. How can I take care of this in C?
Here is some sample code:
#include "stdafx.h"
void main()
{
int x = 0;
printf("Hello World!\n\n");
printf("Please enter an integer: ");
scanf("%d", &x);
printf("\n");
printf("The integer entered is %d", x);
printf("\n\n");
printf("Press any key to exit!");
getchar();
getchar();
}
scanf("%d", &x);. Read the manual page. – Ed Heal Feb 13 at 8:51