multimap::crbegin() is a built-in function in C++ STL which returns a constant reverse iterator referring to the last element in the multimap container. Since multimap… Read More
Tag Archives: CPP-Functions
atol() The atol() function converts a C-style string (array of characters), passed as an argument to atol() function, to a long integer. It converts the… Read More
std::stol(): This function converts the string, provided as an argument in the function call, to long int. It parses str interpreting its content as an… Read More
The function std::swap() is a built-in function in the C++ Standard Template Library (STL) which swaps the value of two variables. Syntax: swap(a, b) Parameters:… Read More
array::cbegin() is a built-in function in C++ STL which returns a const_iterator pointing to the first element in the array. It cannot be used to… Read More
The forward_list::swap() is a built-in function in CPP STL which exchanges the contents of the first given forward_list with another forward_list. Syntax: swap(forward_list first, forward_list… Read More
array::rbegin() is a built-in function in C++ STL which returns a reverse iterator pointing to the last element in the container. Syntax: array_name.rbegin() Parameters: The… Read More
In Mathematics, the differential equation, is of particular importance. The solution of the equation is a function of the parameter . For integral and half-integral… Read More
The list::remove() is a built-in function in C++ STL which is used to remove elements from a list container. It removes elements comparing to a… Read More
The list::empty() is a built-in function in C++ STL that is used to check whether a particular list container is empty or not. This function… Read More
The list::end() is a built-in function in C++ STL which is used to get an iterator to past the last element. By past the last… Read More
The list::erase() is a built-in function in C++ STL which is used to delete elements from a list container. This function can be used to… Read More
The list::front() is a built-in function in C++ STL which is used to return a reference to the first element in a list container. Unlike… Read More
bitset::test() is an inbuilt function in C++ STL which tests whether the bit at a given index is set or not. Syntax: bitset_name.test(index) Parameters: The… Read More
set::rbegin() is a built-in function in C++ STL which returns a reverse iterator pointing to the last element in the container. Syntax: reverse_iterator set_name.rbegin() Parameters:… Read More