~~~~~↵
#include <iostream>↵
using namespace std;↵
↵
int main()↵
{↵
cerr<<isalpha('a');↵
}↵
~~~~~↵
↵
↵
↵
As far as I know and according to [cplusplus.com](http://www.cplusplus.com/reference/iostream/), neither cctype namespace nor ctype.h header file is amongst the automatically included namespace/header file for iostream. Also, iostream does not inherit from cctype/ctype.h.↵
↵
~~~~~↵
#include <iostream>↵
using namespace std;↵
↵
int main()↵
{↵
cerr<<isalpha('a');↵
}↵
~~~~~↵
↵
On my local machine with MinGW (32 bit), it prints 2.↵
↵
On Codeforces compiler, it prints nothing.↵
↵
On ideone, it prints 1024.↵
↵
All the above compilations were done for C++14.↵
↵
It would be great if someone could share the reason for this behaviour.