Sunidhi Bansal has Published 1100 Articles

isnormal() in C++ Programming

Sunidhi Bansal

Sunidhi Bansal

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

236 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

194 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

166 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

138 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

302 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

114 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

is_fundamental Template in C++

Sunidhi Bansal

Sunidhi Bansal

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

138 Views

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

is_final template in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 23-Mar-2020 05:08:08

137 Views

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

forward_list::clear() and forward_list::erase_after() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:37:29

318 Views

In this article we will be discussing the working, syntax and examples of forward_list::clear() and forward_list::erase_after() functions in C++.What is a Forward_list in STL?Forward list are sequence containers that allow constant time insert and erase operations anywhere within the sequence. Forward lists are implemented as singly linked lists. The ordering ... Read More

list::push_front() and list::push_back() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 06-Mar-2020 07:35:10

3K+ Views

In this article we will be discussing the working, syntax and examples of list::push_front() and list::push_back() functions in C++ STL.What is a List in STL?List is a data structure that allows constant time insertion and deletion anywhere in sequence. Lists are implemented as doubly linked lists. Lists allow non-contiguous memory ... Read More

Advertisements