#include <list> #include <string> #include <iostream> using namespace std; int main(int argc, const char *argv[]) { string *s = new string(); delete s; if (s != NULL) std::cout << "s not null" << std::endl; else std::cout << "s null" << std::endl; return 0; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15129 | zachwhaley | Add practice directory |