Sunidhi Bansal has Published 1100 Articles

iswxdigit() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

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

37 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

43 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

104 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

63 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

155 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

27 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

isfinite() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 05:48:43

322 Views

In this article we will be discussing the working, syntax and examples of isfinite() function in C++.isfinite() is an inbuilt function in C++ which comes under header file. isfinite() function used to check and return whether the given number is finite or not, a finite number is any floating number ... Read More

fma() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 05:42:33

41 Views

Given the task is to show the working of fma() function in C++. In this article we will look into what parameters this function need and what results it will be returning.fma() is an inbuilt function of cmath header file, which accepts three parameters x, y and z and return ... Read More

fread() function in C++ program

Sunidhi Bansal

Sunidhi Bansal

Updated on 28-Feb-2020 05:37:05

758 Views

Given the task is to show the working of fread() in C++. In this article we will also look into the different parameters which are passed to fread() and what this function returns.fread() is an inbuilt function of C++ which reads a block of data from the stream. This function ... Read More

Advertisements