Forward List Assign Function in C++ STL

Sunidhi Bansal
Updated on 20-Jan-2020 07:48:14

315 Views

Given is the task to show the working of forward_list assign() function in C++.A forward_list only keeps linkage with the next element unlike normal list that keeps linkage with the next as well as the preceding elements, which helps iterations in forward as well as backward directions. But forward_list can only iterate in the forward direction.The forward_list::assign() function is a part of the C++ standard template library. It is used to insert elements inside a forward list and if the list already contains some elements then they are replaced by the new ones that are added by the user. header ... Read More

Const Cast in C++

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

7K+ 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 that have any object with some constant value which need to be changed occasionally at some point.SyntaxThe syntax is as follows −const_cast(expression)ExampleInput: x = 50 const int* y = &x cout

Const Cast in C++ Type Casting Operators

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 that have any object with some constant value which need to be changed occasionally at some point.SyntaxThe syntax is as follows −const_cast(expression)ExampleInput: const int x = 50; const int* y = &x; cout

clocale Header File in C++

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

300 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 included in this header file are used for tasks that require date formats and currency symbols of different countries.The functions included in header file are setlocale() and localeconv()The macros that are defined in this header file and are used in these two functions are −LC_ALL-> It sets everything.LC_COLLATE-> It ... Read More

Cosh Function for Complex Number in C++

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

178 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 calculates the complex hyperbolic cosine values of complex numbers.The mathematical formula for calculating complex hyperbolic cosine is −cosh(z) = (e^(z) + e^(-z))/zWhere, “z” represents the complex number and “i” represents the iota.The complex number should be declared as follows −complex name(a, b)Here, that is attached to the “complex” data ... Read More

CodeIgniter - One of the Best Open Source Frameworks

Sharon Christine
Updated on 20-Jan-2020 07:31:04

222 Views

For years, developers desperately needed a highly efficient and flexible framework that can not only help them establish effective applications but also give the liberty to bring their creativity and imagination. During that time, CodeIgniter emerged as the most agile, feature-rich and convenient alternative for developers. They love it madly for its quality to let all your creativity skills to life and develop extremely refined applications and minimizing coding.CodeIgniter enjoys the tag of one of the best in class frameworks loaded with a number of features including high security, convenient handling, exceptional stability and personalization.Although, bringing CodeIgniter into use and ... Read More

Cos Function for Complex Number in C++

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

284 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 the complex cosine values of complex numbers.The mathematical formula for calculating complex cosine is −cos(z) = (e^(iz) + e^(-iz))/2where “z” represents the complex number and “i” represents iota.The complex number should be declared as follows −complex name(a, b)Here, that is attached to the “complex” data type describes an object ... Read More

copysign Function in C++

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

134 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 should be included to call this function.SyntaxThe syntax is as follows −copysign(x, y)ExampleInput: copysign(4, -5) Output: -4Explanation − The following example demonstrates how we can copy the sign of one value to the magnitude of another value. The sign of the second argument, that is “-“and the magnitude of the ... Read More

Cloud Testing: Beginning of a New Era of Possibilities

karthikeya Boyini
Updated on 20-Jan-2020 07:27:42

211 Views

Isn’t it costly to buy mobile devices each time a new version comes up, to test your mobile applications? Off course, it is certainly a costly affair to keep acquiring those mobile devices physically as the new versions and operating systems are kept on releasing in regular intervals.But you cannot just stop purchasing the devices and restricts your testing to a certain limits, which surely gives your competitors an advantage to have a better functioning application than yours.Worried! No worries, every dark cloud have a silver lining You can test your mobile applications on as many devices of different versions ... Read More

List emplace Function in C++ STL

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

638 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, element)ParametersThis function takes two parameters −First is position, which represents the position at which the new element has to be placed and the second is value, which represents the element that has to be inserted inside the list at the position.Return ValueThe function returns an iterator that point at the ... Read More

Advertisements