Sunidhi Bansal has Published 1085 Articles

Quickly merging two sorted arrays using std::merge() in C++ STL(cute ho ap)

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 15:40:02

2K+ Views

In this article we will be discussing how we can quickly merge two sorted arrays using std::merge() function in C++ STL.So, before solving the problem let's first discuss the std::merge() in C++ STL.What is std::merge()?std::merge() function is an inbuilt function in C++ STL, which is defined in the header ... Read More

log1p() in C++ program

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 12:07:18

126 Views

We are given with a variable of any type and the task is to find the result using the function log1p(). log1p() is an analytical function that takes an argument ‘a’ and also has a return value.Syntaxdouble log1p (double x); Where x ranges between [-1, ?] float log1p (float x);Return ... Read More

mbrtowc() function in C/C++ program

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 12:04:58

190 Views

In this article we will be discussing the working, syntax and examples of std::mbrtowc() function in C++ STL.What is std::mbrtowc()?std::mbrtowc() function is an inbuilt function in C++ STL, which is defined in the header file. mbrtowc() means that it converts the narrow multibyte character string to wide character. This ... Read More

quick_exit() function in C++ with Examples

Sunidhi Bansal

Sunidhi Bansal

Updated on 17-Apr-2020 10:01:01

237 Views

In this article we will be discussing the working, syntax and examples of quick_exit() function in C++ STL.What is quick_exit()?quick_exit() function is an inbuilt function in C++ STL, which is defined in the header file. quick_exit() function is used to quickly terminate the calling process means it terminates the ... Read More

putwchar() function in C/C++

Sunidhi Bansal

Sunidhi Bansal

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

113 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

206 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

303 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

176 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

697 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

Advertisements