If you wanted to see a 10 minute video explaining some programming technique or thing, what would it be?
/cc @lefticus - if you can spare a crumb of not-done C++ Weekly ideas that you don't think you'd ever get to, that'd be cool too!
16
3
22
but ADL the surprising parts would be more fun:
#103 Given the following in C++ (CppCon inspired quiz):
namespace N {
int i = 4;
extern int j;
}
int i = 2;
int N::j=i;
Without checking, what is the value of N::j?
A. 4
B. 2
C. Ill-formed (requires diagnostic)
D. Help, show me the results!
#Cplusplus
#Cpppolls
#CppCon
Show this thread
2
0
3


