Sunidhi Bansal has Published 1085 Articles

forward_list::unique( ) in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:42:16

233 Views

Given is the task to show the working of forward_list::unique( ) function in C++.Forward list are sequence containers that allow constant time insert and erase operations anywhere within the sequence. Forward list are implement as a singly-linked lists. The ordering is kept by the association to each element of a ... Read More

hypot( ), hypotf( ), hypotl( ) in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:30:08

216 Views

In this article we will be discussing the working, syntax and examples of hypot( ), hypotf( ), hypotl( ) function in C++.hypot( ) functionThis function is used to compute the hypotenuse of a right angled triangle. This function returns the square root of sum of square of two variables. It ... Read More

real( ) function in c++

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:19:23

2K+ Views

Given is the task to the working of real( ) function in C++.This function is used to find the real part of the complex number. This function return the real part of the complex number and sets the real part to value. And real returns the real component. The real( ... Read More

iswxdigit() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:15:21

102 Views

In this article we are going to discuss the iswxdigit() function in C++, its syntax, working and its return values.iswxdigit() function is an inbuilt function in C++ which is defined in header file. The function checks whether the passed wide character is a hexadecimal character or not. The function checks ... Read More

iswupper() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:13:17

108 Views

In this article we are going to discuss the iswupper() function in C++, its syntax, working and its return values.iswupper() function is an inbuilt function in C++ which is defined in header file. The function checks whether the passed wide character is in upper case(A-Z) or not.This function is a ... Read More

iswspace() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:09:48

168 Views

In this article we are going to discuss the iswspace() function in C++, its syntax, working and its return values.iswspace() function is an inbuilt function in C++ which is defined in header file. The function checks whether the passed wide character is a white space character or not.This function is ... Read More

iswpunct() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:07:18

124 Views

In this article we are going to discuss the iswpunct() function in C++, its syntax, working and its return values.iswpunct() function is an inbuilt function in C++ which is defined in header file. The function checks whether the passed wide character is a punctuation character or not. This function ... Read More

difftime() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 06:02:09

208 Views

In this article we are going to discuss the difftime() function in C++, its syntax, working and its return values.difftime() function is an inbuilt function in C++ which is defined in header file. The function accepts two parameters of time_t type, function calculate the difference between the two timesSyntaxdouble difftime(time_t ... Read More

isunordered() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 05:58:15

56 Views

In this article we are going to discuss the isunordered() function in C++, its syntax, working and its return values.isunordered() function is an inbuilt function in C++ which is defined in header file. The function checks whether the two floating points number be NAN, if both or either one of ... Read More

isinf() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 05:52:53

2K+ Views

In this article we will be discussing the isinf() function in C++, its syntax, working and what will be its return value.isinf() is an inbuilt function in C++ which comes under header file, the function is used to check whether the variable passed in it is infinity or not, no ... Read More

Advertisements