Search
 
SCRIPT & CODE EXAMPLE
 

CPP

right shift in c++

/* C++ Program to demonstrate use of left shift 
   operator */
#include<stdio.h>
int main()
{
    // a = 5(00000101), b = 9(00001001)
    unsigned char a = 5, b = 9; 
  
    // The result is 00001010 
    printf("a<<1 = %d
", a<<1);
    
    // The result is 00010010 
    printf("b<<1 = %d
", b<<1);  
    return 0;
}
Comment

right shift in c++

/* C++ Program to demonstrate use of right
   shift operator */
#include <iostream>
using namespace std;
  
int main()
{
    // a = 5(00000101), b = 9(00001001)
    unsigned char a = 5, b = 9;
  
    // The result is 00000010
  
    cout <<"a>>1 = "<< (a >> 1)<< endl;
  
    // The result is 00000100
    cout <<"b>>1 = "<< (b >> 1) << endl;
    return 0;
}
  
// This code is contributed by shivanisinghss2110
Comment

c++ shift array to the right

	// Shift array elements to right
	const int SIZE = 9;
	int arr[SIZE]={1,2,3,4,5,6,7,8,9};

	int last = arr[SIZE - 1];		
	for (int i = SIZE - 1; i > 0; i--)	
		arr[i] = arr[i - 1];		
	
	arr[0] = last;
Comment

PREVIOUS NEXT
Code Example
Cpp :: c++ array on heap 
Cpp :: cpp map contains 
Cpp :: binpow in fenwick tree 
Cpp :: how to write hello world c++ 
Cpp :: how to parse using stringstream 
Cpp :: C++ Area and Circumference of a Circle 
Cpp :: cpp tutorial 
Cpp :: are arrays faster than vectors c++ 
Cpp :: trig in c++ 
Cpp :: can derived class access private members 
Cpp :: print all even number using for loop c++ 
Cpp :: c++ influenced 
Cpp :: why ostream cannot be constant 
C :: powershell search files for string 
C :: plt hide axis ticks 
C :: c string is int 
C :: imprimir valor no octave 
C :: how to find all the missing dates and increment the series in r 
C :: %hd c 
C :: arduino digital input pins 
C :: how to read character from a string in c 
C :: find smallest number in array in c 
C :: how to print the first character of a string in c 
C :: C read a character 
C :: how to modulo in c without % 
C :: int_min in c 
C :: count distinct characters in a string C 
C :: Bitwise Operators in C/C++ 
C :: how to convert int in to const char in c 
C :: enregistrement en c 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =