Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
#include <iostream> int main() { std::string s = ""; if (s.empty()) { std::cout << "empty"; } else { std::cout << "not empty"; } return 0; } /* run: empty */
#include <iostream> int main() { std::string s = ""; if (!s.length()) { std::cout << "empty"; } else { std::cout << "not empty"; } return 0; } /* run: empty */