cshift() function for valarray in C++ Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The cshift() function is defined in valarray header file. This function returns a new valarray of the same size with elements whose positions are shifted circularly by n elements. If n is negative, right-shift is applied, if n is positive left-shift is applied. Syntax: valarray cshift (int n) const; Parameter: n: It represents the number of element to shift. Returns: This function returns the new valarray after circularly shifting elements. Below programs illustrate the above function: Example 1:- CPP // C++ program to demonstrate // example of cshift() function. #include <bits/stdc++.h> using namespace std; int main() { // Initializing valarray valarray<int> varr = { 3, 2, 5, 4, 1 }; // Declaring new valarray valarray<int> varr1; // using cshift() to shift elements to left // shifts valarray by 3 position varr1 = varr.cshift(3); // Displaying elements of valarray after shifting cout << "The new valarray after shifting is = "; for (int& x : varr1) cout << x << " "; cout << endl; return 0; } Output: The new valarray after shifting is = 4 1 3 2 5 Example 2:- CPP // C++ program to demonstrate // example of cshift() function. #include <bits/stdc++.h> using namespace std; int main() { // Initializing valarray valarray<int> varr = { 3, 2, 5, 4, 1 }; // Declaring new valarray valarray<int> varr1; // using cshift() to shift elements to right // shifts valarray by 3 position varr1 = varr.cshift(-3); // Displaying elements of valarray after shifting cout << "The new valarray after shifting is = "; for (int& x : varr1) cout << x << " "; cout << endl; return 0; } Output: The new valarray after shifting is = 5 4 1 3 2 Comment More infoAdvertise with us Next Article valarray size() function in C++ B bansal_rtk_ Follow Improve Article Tags : Misc C++ Programs C++ CPP-Functions cpp-valarray +1 More Practice Tags : CPPMisc Similar Reads max() function for valarray in C++ The max() function is defined in valarray header file. This function returns the largest value contained in the valarray. Syntax: T max() const; Parameter: This function doesn't accept any parameter. Returns: This function returns the maximum value in the valarray. Below programs illustrate the abov 1 min read max() function for valarray in C++ The max() function is defined in valarray header file. This function returns the largest value contained in the valarray. Syntax: T max() const; Parameter: This function doesn't accept any parameter. Returns: This function returns the maximum value in the valarray. Below programs illustrate the abov 1 min read valarray size() function in C++ The size() function is defined in valarray header file. This function is used to find the size of valarray and returns the size of valarray. Syntax: size_t size() const; Parameter: This function doesn't takes any parameter. Returns: This function returns the number of element in valarray. Below prog 1 min read valarray size() function in C++ The size() function is defined in valarray header file. This function is used to find the size of valarray and returns the size of valarray. Syntax: size_t size() const; Parameter: This function doesn't takes any parameter. Returns: This function returns the number of element in valarray. Below prog 1 min read valarray swap() function in c++ The swap() function is defined in valarray header file. This function is used to swap the content of one valarray with another valarray. Syntax: void swap( valarray& valarray2 ); Parameter: This method accepts a parameter valarray2 which represents the another valarray with which we have to swap 2 min read valarray swap() function in c++ The swap() function is defined in valarray header file. This function is used to swap the content of one valarray with another valarray. Syntax: void swap( valarray& valarray2 ); Parameter: This method accepts a parameter valarray2 which represents the another valarray with which we have to swap 2 min read Like