Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
Misc
8.8K+ articles
C++
4.3K+ articles
C++ Programs
2.4K+ articles
STL
1.3K+ articles
CPP-Functions
615+ articles
CPP-Library
254+ articles
C/C++ Puzzles
187+ articles
C++-Templates
14+ articles
cpp-ratio
7+ articles
cpp-template
179+ posts
Recent Articles
Popular Articles
bit_and function in C++
Last Updated: 10 May 2019
bit_and is a builtin function in C++ which is used to return the values after applying the bitwise_and on its arguments(as returned by operator ).template struct bit_and ...
read more
Misc
Technical Scripter
C++
STL
CPP-Functions
cpp-template
Modulus function in C++ STL
Last Updated: 14 September 2018
Modulus function is used to return the value of the modulus between its two arguments. It works same as modulus operator works.template struct modulus : binary_function ...
read more
Misc
Technical Scripter
C++
STL
CPP-Functions
cpp-template
generate_canonical Function template in C++
Last Updated: 11 September 2018
This template in C++ is used to convert the value generated by g into a floating point value in the range [0, 1) preserving the uniformity properties of sequences generate...
read more
Misc
C++
STL
cpp-template
C++-Templates
sqrt() function for complex number in C++
Last Updated: 17 August 2022
The complex version of sqrt() function is defined in the complex header file. This function is used to calculate the square root of the complex number z with a branch cut ...
read more
Misc
C++ Programs
C++
CPP-Functions
cpp-template
std::is_enum Template in C++
Last Updated: 19 November 2018
The std::is_enum template of C++ STL is used to check whether the given type is enum or not. It returns a boolean value showing the same.Syntax:template class T struct is_...
read more
Misc
C++
STL
cpp-template
C++-Templates
std::is_integral template in C++
Last Updated: 19 November 2018
The std::is_integral template of C++ STL is used to check whether the given type is integral or not. It returns a boolean value showing the same.Syntax:template class T st...
read more
Misc
C++
STL
cpp-template
valarray apply() in C++
Last Updated: 23 October 2018
The apply() function is defined in valarray header file. This function returns a valarray with each of its elements initialized to the result of applying func to its corre...
read more
Misc
C++
cpp-template
cpp-valarray
std is_floating_point Template in C++
Last Updated: 19 November 2018
The std::is_floating_point template of C++ STL is used to check whether the given type is a floating point value or not. It returns a boolean value showing the same.Syntax...
read more
Misc
C++
STL
cpp-template
C++-Templates
std is_object Template in C++
Last Updated: 19 November 2018
The std::is_object template of C++ STL is used to check whether the given type is object or not. It returns a boolean value showing the same.Syntax:template class T struc...
read more
Misc
C++
STL
cpp-template
C++-Templates
is_arithmetic Template in C++
Last Updated: 19 November 2018
The std::is_arithmetic templateof C++ STL is used to check whether the given type is arithmetic or not. An Arithmetic type means an integral type or a floating-point type....
read more
Misc
C++
cpp-template
is_pointer Template in C++
Last Updated: 19 November 2018
The std::is_pointer template of C++ STL is used to check whether the given type is pointer or not. It returns a boolean value showing the same.Syntax:template class T str...
read more
Misc
C++
cpp-pointer
cpp-template
is_lvalue_reference Template in C++
Last Updated: 19 November 2018
The std::is_lvalue_reference template of C++ STL is used to check whether the type is a lvalue reference type or not. It returns a boolean value showing the same.Syntax: t...
read more
Misc
C++
STL
CPP-Library
cpp-references
cpp-template
std::is_compound Template in C++
Last Updated: 19 November 2018
The std::is_compound template of C++ STL is used to check the whether the type is a compound type or not. It returns a boolean value showing the same.Syntax:template clas...
read more
Misc
C++
STL
cpp-template
is_scalar template in C++
Last Updated: 19 November 2018
The std::is_scalar template of C++ STL is used to check whether the given type is a scalar type or not. It returns a boolean value showing the same.Syntax:template class ...
read more
Misc
C++
STL
cpp-template
is_const Template in C++
Last Updated: 19 November 2018
The std::is_const template of C++ STL is used to check whether the type is a const-qualified or not. It returns a boolean value showing the same.Syntax:template class T ...
read more
Misc
C++
STL
cpp-template
1
2
3
4
...
12
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !