Sunidhi Bansal has Published 1100 Articles

Const cast in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:47:46

6K+ Views

Given the task is to show the working of const_cast in C++.const_cast is one of the type casting operators. It is used to change the constant value of any object or we can say it is used to remove the constant nature of any object.const_cast can be used in programs ... Read More

const_cast in C++ - Type casting operators

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:38:45

2K+ Views

Given the task is to show the working of const_cast in c++.const_cast is one of the type casting operators. It is used to change the constant value of any object or we can say it is used to remove the constant nature of any object.const_cast can be used in programs ... Read More

clocale header file in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:33:16

199 Views

Given the task is to show the use of header file in C++.The header file is a part of the localization library which further is a part of the C++ standard library. Originally it was in the C standard library with the name as .The functions and declarations ... Read More

cosh() function for complex number working with C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:32:37

86 Views

Given the task is to show the working of cosh() function for complex numbers in C++.The cosh() function is a part of the C++ standard template library. It is a little different from the standard cosh() function. Instead of calculating the hyperbolic cosines of angles that are in radians, it ... Read More

Cos() function for complex number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:28:27

143 Views

Given the task is to show the working of cos() function for complex numbers in C++.The cos() function is a part of the C++ standard template library. It is a little different from the standard cos() function. Instead of calculating the cosine of simple integral or rational numbers, it calculates ... Read More

Copysign() function in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:27:50

58 Views

Given the task is to show the working of copysign() in C++.The copysign() function is a part of the C++ standard template library. It takes two arguments and produces the result by combining the magnitude of the first value and the sign of the second value. or header file ... Read More

list emplace() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:26:29

484 Views

Given is the task to show the working of list emplace() function in C++.The list::emplace() function is a part of the C++ standard template library. It is used to insert values inside a list at a specified position by the user. header file should be included to call this function.SyntaxList_Name.emplace(position, ... Read More

List assign() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:22:18

1K+ Views

Given is th e task to show the working of the assign() function in C++.The list::assign() function is a part of the C++ standard template library. It is used to assign the values to a list and also to copy values from one list to another. header file should be ... Read More

List crbegin() and crend() function in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:20:41

72 Views

Given is the task to show the working of list crbegin() and crend() functions in C++.The list::crbegin() and list::crend() functions are a part of the C++ standard template library. header file should be included to call these functions.list::crbegin()This function returns the constant iterator which points to the end element of ... Read More

list cbegin() and cend() functions in C++ STL

Sunidhi Bansal

Sunidhi Bansal

Updated on 20-Jan-2020 07:19:07

79 Views

Given is the task to show the working of list::cbegin() and list::cend functions in C++.The list::cbegin() and list::cend() functions are a part of the C++ standard template library. header file should be included to call these functions.list::cbegin()This function returns the constant iterator which points to the beginning element of the ... Read More

Advertisements