Sunidhi Bansal has Published 1085 Articles

match_results begin() and end() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:23:48

122 Views

In this article we will be discussing the working, syntax and examples of match_results::begin() and match_results::end() functions in C++ STL.What is a match_results in C++ STL?std::match_results is a specialized container-like class which is used to hold the collection of character sequences which are matched. In this container class a regex ... Read More

is_standard_layout template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:14:26

300 Views

In this article we will be discussing the working, syntax and examples of std::is_standard_layout template in C++ STL.is_standard_layout is a template which comes under the header file. This template is used to check whether the given type T is a standard layout or not.What is a standard layout in ... Read More

Data types ranges and their macros in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:02:50

259 Views

Given the task is to find the memory range of the different data types, that what range of value a data type can store the value from minimum value to maximum value. There is memory range of data type from in which value of data can be stored. It is ... Read More

tanh( ) function for complex Number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:56:53

187 Views

In this article we will be discussing the working, syntax and examples of tanh() function for a complex number in C++ STL.tanh() for complex number is a function which comes under header file. This function is used to find the hyperbolic tangent of a complex number. This is the ... Read More

isnormal() in C++ Programming

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:54:22

332 Views

In this article we will be discussing the working, syntax and examples of isnormal() function in C++ STL.Isnormal() is a function which comes under the header file. This function is used to check whether the given number is a normal number or not.What is a normal number?A real number ... Read More

is_void template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:51:15

289 Views

In this article we will be discussing the working, syntax and examples of std::is_void template in C++ STL.is_void is a template which comes under the header file. This template is used to check whether the given type T is a void type or not.What is a void type in ... Read More

is_unsigned template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:48:17

247 Views

In this article we will be discussing the working, syntax and examples of std::is_unsigned template in C++ STL.is_unsigned is a template which comes under header file. This template is used to check whether the given type T is an unsigned type or not.What are unsigned data types in C++?Unsigned ... Read More

is_signed template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:44:34

230 Views

In this article we will be discussing the working, syntax and examples of std::is_signed template in C++ STL.is_ signed is a template which comes under header file. This template is used to check whether the given type T is a signed type or not.What is a signed type?These are ... Read More

is_pointer Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:40:18

435 Views

In this article we will be discussing the working, syntax and examples of std::is_pointer template in C++ STL.is_ pointer is a template which comes under the header file. This template is used to check whether the given type T is a pointer type or not.What is a Pointer?Pointers are ... Read More

is_pod template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:35:46

170 Views

In this article we will be discussing the working, syntax and examples of std::is_pod template in C++ STL.is_ pod is a template which comes under header file. This template is used to check whether the given type T is a POD(plain-old-data) type or not.What is POD(Plain old data)?Plain old ... Read More

Advertisements