Skip to content

Latest commit

History

History
29 lines (23 loc) 路 748 Bytes

empty.md

File metadata and controls

29 lines (23 loc) 路 748 Bytes

empty

Description : The vector::empty() is a built-in function in C++ STL is used to check whether a particular vector container is empty or not.

Example :

    // Creating a vector 
    std::vector<int> example; 
  
    // check if vector is empty 
    if (example.empty()) 
        std::cout << "Empty Vector\n"; 
    else
        std::cout << "Not Empty\n"; 
  
    // Add elements to the Vector 
    example.push_back(10); 
    example.push_back(20); 
    example.push_back(30); 
    example.push_back(40); 
  
    // check again if vector is empty 
    if (example.empty()) 
        std::cout << "Empty Vector\n"; 
    else
        std::cout << "Not Empty\n"; 
         

Run Code