Sunidhi Bansal has Published 1100 Articles

putwchar() function in C/C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:58:18

56 Views

In this article we will be discussing the working, syntax and examples of putwchar() function in C++ STL.What is putwchar()?putwchar() function is an inbuilt function in C++ STL, which is defined in the header file. putwchar() function is used to write the wide character on the standard output device. ... Read More

mbrtoc32() in C/C++ with Examples

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:54:48

125 Views

In this article we will be discussing the working, syntax and examples of std::mbrtoc32() function in C++ STL.What is std::mbrtoc32()?std::mbrtoc32() function is an inbuilt function in C++ STL, which is defined in header file. This function is used to convert a narrow multibyte character to UTF-32-character representation.If the associated ... Read More

mbrtoc16() in C/C++ with Examples

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:52:41

197 Views

In this article we will be discussing the working, syntax and examples of std::mbrtoc16() function in C++ STL.What is std::mbrtoc16()?std::mbrtoc16() function is an inbuilt function in C++ STL, which is defined in header file. This function is used to convert a narrow multibyte character to UTF-16-character representation.If the associated ... Read More

mbsrtowcs() function in C/C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:35:08

100 Views

In this article we will be discussing the working, syntax and examples of std::mbsrtowcs() function in C++ STL.What is std::mbsrtowcs()?std::mbsrtowcs() function is an inbuilt function in C++ STL, which is defined in the header file. mbsrtowcs() means that it converts the null terminated multibyte character string whose first byte ... Read More

memcpy() in C/C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:30:22

3K+ Views

In this article we will be discussing the working, syntax and examples of memcpy() function in C++ STL.What is memcpy()?memcpy() function is an inbuilt function in C++ STL, which is defined in header file. memcpy() function is used to copy blocks of memory. This function is used to copy ... Read More

mktime() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:28:11

539 Views

In this article we will be discussing the working, syntax and examples of mktime() function in C++ STL.What is mktime()?mktime() function is an inbuilt function in C++ STL, which is defined in the header file. mktime() function is used to convert the local time to and object time_t.This function ... Read More

scalbn() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:26:42

29 Views

In this article we will be discussing the working, syntax and examples of scalbn() function in C++ STL.What is scalbn()?scalbn() function is an inbuilt function in C++ STL, which is defined in the header file. scalbn() function is used to scale significantly using the floating point base exponent.Significand is ... Read More

nearbyint() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:22:48

30 Views

In this article we will be discussing the working, syntax and examples of nearbyint() function in C++ STL.What is nearbyint()?nearbyint() function is an inbuilt function in C++ STL, which is defined in header file. nearbyint() function is used to get the round integral value as per the input.The function ... Read More

norm() function in C++ with Examples

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:20:54

1K+ Views

In this article we will be discussing the working, syntax and examples of norm() function in C++ STL.What is norm()?norm() function is an inbuilt function in C++ STL, which is defined in header file. norm() function is used to get the norm value of a complex number.Norm value of ... Read More

max() function for valarray in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 09:19:05

219 Views

In this article we will be discussing the working, syntax and examples of valarray::max() function in C++ STL.What is a valarray?std::valarray is a class which is used for representing, modifying the array of values, which supports elements-wise mathematical operations.What is valarray::max()?std::valarray::max() function is an inbuilt function in C++ STL, which ... Read More

Advertisements