Sunidhi Bansal has Published 1100 Articles

is_empty template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:21:38

190 Views

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

is_rvalue_reference Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:16:39

156 Views

In this article we will be discussing the working, syntax and examples of std::is_rvalue_reference template in C++ STL. is_rvalue_reference template in C++ is used to check whether the defined type is a rvalue reference or not.What is an rvalue?Rvalues are the values which are on the right side of an ... Read More

is_lvalue_reference Template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:14:00

132 Views

In this article we will be discussing the working, syntax and examples of std::is_lvalue_reference template in C++ STL.is_lvalue_reference template in C++ is used to check whether the defined type is an lvalue reference or not.What is an lvalue?Lvalues are the values which are on the left side of an assignment ... Read More

iswgraph() in C/C++ with Examples

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:09:02

84 Views

In this article we will be discussing the working, syntax and examples of iswgraph() function in C++ STL.iswgraph() is a function which comes under the header file. This function is used to check whether the given wide character has any graphical representation or not. The function is the wide ... Read More

is_const Template in C++

Sunidhi Bansal

Sunidhi Bansal

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

157 Views

In this article we will be discussing the working, syntax and examples of std::is_const template in C++ STL.is_const template in C++ is used to check whether the defined type is a const-qualified type or not.What is const-qualified type?We say a type as a const-qualified when the value of the type ... Read More

is_class template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 07:02:32

85 Views

In this article we will be discussing the working, syntax and examples of std::is_class template in C++ STL.is_class template is used to check whether the defined type is class type not any other type.What is a class?A class is an user defined data type or a data structure which contains ... Read More

tan() function for complex number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:57:33

140 Views

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

log10() function for complex number in C++

Sunidhi Bansal

Sunidhi Bansal

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

157 Views

In this article we will be discussing the working, syntax and examples of log10() function in C++ STL.What is log10() function?log10() function is an inbuilt function in C++ STL, which is defined in header file. log10() is used to find the common logarithmic value of a complex number. This ... Read More

log() function for complex number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 06:52:34

169 Views

In this article we will be discussing the working, syntax and examples of log() function in C++ STL.What is the log() function?log() function is an inbuilt function in C++ STL, which is defined in header file. log() returns complex natural logarithmic value of a complex value. The difference between ... Read More

match_results size() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

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

80 Views

In this article we will be discussing the working, syntax and examples of match_results::size() function 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 match operation ... Read More

Advertisements