Skip to content

Tag Archives: CPP-Functions

bit_and is a builtin function in C++ which is used to return the values after applying the bitwise_and on its arguments(as returned by operator &).… Read More
Given a string containing the words and dates, the task is to find the total number of distinct years mentioned in that string. Note: Assuming that… Read More
The mbrtowc() function in C/C++ converts multibyte sequence to wide characters. This function returns the length in bytes of a multibyte character. The multibyte character… Read More
The mbrlen() function in C/C++ determines the size in bytes, of the remainder of the multibyte character whose first byte is pointed to by str,… Read More
The wcspbrk() is a built-in function in C/C++ which searches for a set of wide characters present in a wide string in another wide string.… Read More
logical_and in C++ is a binary function object class which returns the result of the logical “and” operation between its two arguments (as returned by… Read More
logical_or in C++ is a binary function object class which returns the result of the logical “or” operation between its two arguments (as returned by… Read More
The mbrtoc16() is a built-in function in C/C++ which converts a narrow multibyte character to a 16 bit character representation. It is defined within the… Read More
The mbrtoc32() is a built-in function in C/C++ which converts a narrow multibyte character to a 32 bit character representation. It is defined within the… Read More
The wctype() is a built-in function in C/C++ which returns a value of type wctype_t that is used for classifying a wide character. It is… Read More
The strtoimax() function in C++ interprets the contents of a string as an integral number of the specified base and return its value as an… Read More
The c32rtomb() is a built-in function in C/C++ which converts 32 bit character representation to a narrow multibyte character representation. It is defined within the… Read More
The c16rtomb() is a built-in function in C/C++ which converts 16 bit character representation to a narrow multibyte character representation. It is defined within the… Read More
The strtoul() function in C/C++ which converts the initial part of the string in str to an unsigned long int value according to the given… Read More
The forward_list::resize() is an inbuilt function in C++ STL which changes the size of forward_list. If the given size is greater than the current size… Read More

Start Your Coding Journey Now!