Why are the C and C++ compilers giving me error messages about int when my code doesn’t mention int?

1 · Raymond Chen · Dec. 30, 2020, 3:41 p.m.
You’re trying to get your code to compile without errors, and you’re working through the error list, and then you get to some error message that complains about int when your code never mentions int: void f() { const char* p = get_user_name(); The post Why are the C and C++ compilers giving me error messages about int when my code doesn’t mention int? appeared first on The Old New Thing....