Li-Fan Chen says to YSITD
Language: cpp Source: #include <iostream> using namespace std ; main(){ int array[10] = {0}; cout << array << "\n"; cout << array + 20; } Warnings: source_file.cpp:3:6: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type] main(){ ^ Result: 0x7ffd7a97ba50 0x7ffd7a97baa0 Note: cplusplus_gcc assumed, other valid options are cplusplus_clang, visual_cplusplus, you can be more specific next time.