Sunidhi Bansal has Published 1078 Articles

iswblank() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 27-Feb-2020 05:44:24

178 Views

The iswblank () function in C++ is used to check if the given wide character is blank not. It is present in “ctype.h” header file in C language and “cctype” header file in C++ Standard template library (STL).Syntax of iswblank is as followsint iswblank(wint_t ch)Return Type − returns non zero ... Read More

Declare a C/C++ function returning pointer to array of integer function pointers

Sunidhi Bansal

Sunidhi Bansal

Updated on 27-Feb-2020 05:41:36

508 Views

With given array the task is to create a function which will return pointer to an array of integer function pointers.For that we will input the two values and call a function which compares both the two values and functions pointer which return the memory address of bigger value and ... Read More

iswlower() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 27-Feb-2020 05:35:46

157 Views

In C++ standard template library(STL), iswlower() function is used to check if the given wide character is in lowercase or not, if not then the function will return a zero value. The characters with ASCII value from 97 to 122 i.e. a-z are the lowercase alphabetic letters. Iswlower() function is ... Read More

deque_insert( ) in C++ in STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 26-Feb-2020 12:24:12

751 Views

Given is the task to show the functionality of Deque insert( ) function in C++ STLWhat is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user to insert data only ... Read More

List::clear() in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 26-Feb-2020 12:18:36

4K+ Views

In this article we will be discussing the working, syntax and examples of list::clear() function in C++.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 allocation. List perform ... Read More

List remove() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 26-Feb-2020 12:15:04

13K+ Views

In this article we will be discussing the working, syntax and examples of remove() function in C++.What is a List in STLList 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 allocation. List perform ... Read More

deque_rend( ) in C++ in STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 26-Feb-2020 12:10:39

203 Views

Given is the task to show the functionality of Deque rend( ) function in C++ STLWhat is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user to insert data only ... Read More

deque_rbegin( ) in C++ in STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 26-Feb-2020 12:06:59

166 Views

Given is the task to show the functionality of Deque rbegin( ) function in C++ STLWhat is Deque?Deque is the Double Ended Queues that are the sequence containers which provides the functionality of expansion and contraction on both the ends. A queue data structure allow user to insert data only ... Read More

List pop_front() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 26-Feb-2020 12:02:50

4K+ Views

In this article we will be discussing the working, syntax and examples of pop_front () function in C++.What is a List in STLList 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 allocation. List ... Read More

List push_back() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 26-Feb-2020 11:59:05

2K+ Views

In this article we will be discussing the working, syntax and examples of list:: push_back() function in C++.What is a List in STLList 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 allocation. List ... Read More

Advertisements