I can't figure out why I'm getting the warning ⚠️
Using Xcode 11.1 the default Xcode compiler MacOS Catalina.
Implicitly declaring library function 'printf' with type 'int (const char *, ...)'
Include the header or explicitly provide a declaration for 'printf'
#include <stdio.h>
int main( int argc, const char* argv[] ){
printf("Hello World\n");
}
The header was included.
Something is wrong with the Xcode on the new MacOS Catalina? I'm missing something?
Thanks in advance