I tried to enter error data in next program but it can't recognize the error. Once I entered numeric data, and next time entered string data but the program made no reaction:
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main(void)
{
int i;
scanf("%d",&i);
if(ferror(stdin))
printf("Error is ocurred!");
}
Don't assume what a function does. Read it's documentation.
https://www.cplusplus.com/reference/cstdio/ferror/
So this depends on if
scanf
has set the error indicator, which it does not in this situation.Instead, use this:
Oh, and don't use
use namespace std
Why is "using namespace std;" considered bad practice?