Sunidhi Bansal has Published 1100 Articles

localtime() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:17:05

150 Views

In this article we will be discussing the working, syntax and examples of localtime() function in C++ STL.What is localtime()?localtime() function is an inbuilt function in C++ STL, which is defined in the header file. localtime() is used to convert the given time into the local time.This function uses ... Read More

exp2() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:14:27

69 Views

In this article we will be discussing the working, syntax and examples of std::exp2() function for complex numbers in C++ STL.What is std::exp2()?std::exp2() function for complex numbers is an inbuilt function in C++ STL, which is defined in or header file. exp2() function is used for computing the ... Read More

exp() function for complex number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:11:23

565 Views

In this article we will be discussing the working, syntax and examples of std::exp() function for complex numbers in C++ STL.What is std::exp()?std::exp() function for complex numbers is an inbuilt function in C++ STL, which is defined in a header file. exp() function for complex numbers is the same ... Read More

Error functions using cmath in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:09:03

224 Views

We are given the variable and the task is to find the probability of the variable using an error function available in C++ STL. This function is available in the cmath header file in C++.What is an Error function?Error function in mathematics is also known as Gauss error function which ... Read More

count_if() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:03:55

1K+ Views

In this article we will be discussing the working, syntax and examples of std::count_if() function in C++ STL.What is std::count_if()?std::count_if() function is an inbuilt function in C++ STL, which is defined in header file. count_if() is used to get the number of elements in a specified range which satisfy ... Read More

multiset equal_range() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:00:34

118 Views

In this article we will be discussing the working, syntax and examples of multiset::equal_range() function in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same like a set, in a specific order.In ... Read More

multiset crbegin() and crend() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 08:57:53

83 Views

In this article we will be discussing the working, syntax and examples of multiset::crbegin() and multiset::crend() function in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same like a set, in a ... Read More

multiset cbegin() and cend() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 08:52:57

81 Views

In this article we will be discussing the working, syntax and examples of multiset::cbegin() and multiset::cend() function in C++ STL.What is a multiset in C++ STL?Multisets are the containers similar to the set container, meaning they store the values in the form of keys same like a set, in a ... Read More

map::at() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-Apr-2020 12:58:18

317 Views

In this article we will be discussing the working, syntax and examples of map::at() function in C++ STL.What is a Map in C++ STL?Maps are the associative container, which facilitates to store the elements formed by a combination of key value and mapped value in a specific order. In a ... Read More

map::size() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 15-Apr-2020 12:56:27

7K+ Views

In this article we will be discussing the working, syntax and examples of map::size() function in C++ STL.What is a Map in C++ STL?Maps are the associative container, which facilitates to store the elements formed by a combination of key value and mapped value in a specific order. In a ... Read More

Advertisements