Sunidhi Bansal has Published 1100 Articles

deque_crend in C++ in STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 05:29:25

78 Views

Given is the task to show the functionality of Deque crend( ) 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_emplace in C++ in STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 05:23:51

101 Views

Given is the task to show the functionality of Deque emplace( ) 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

Isupper() and Islower() and their application in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 27-Feb-2020 05:48:09

5K+ Views

The functions isupper() and islower() in C++ are inbuilt functions present in “ctype.h” header file. It checks whether the given character or string is in uppercase or lowercase.What is isupper()?This function is used to check whether the given string contains any uppercase letter or not and also if we have ... Read More

iswblank() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

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

66 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

405 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

57 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

561 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

12K+ 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

104 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

Advertisements