#include <iostream> int main(int argc, const char *argv[]) { char c[4] = {'\0'}; if (c == NULL) std::cout << "null" << std::endl; else std::cout << c << std::endl; return 0; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15129 | zachwhaley | Add practice directory |