#include char func_b(); char func_c(); int main(void) { if(func_b() != 'b') { return 1; } if(func_c() != 'c') { return 2; } return 0; }