top of page

Problem 2

Cyclic Right Shift of Elements (Id-1243)

Question:   

          Given a set of elements stored in an array and a number 'm', design an Algorithm and write the subsequent C program to perform cyclic right shift of the array by 'm' places. For example, if the elements are 12, 13, 16, 7, 10 and m =2 then the resultant set will be 7, 10, 12, 13, 16.

 Input Format

Number of elements in the set: 'n'

element-1

element-2

...

element-n

value of 'm'

 

Output Format

Elements in the set after right shift by 'm' places

OUTPUT
INPUT
PROCESSING
C  PROGRAM

I'm a paragraph. Click here to add your own text and edit me. It's easy.

I'm a paragraph. Click here to add your own text and edit me. It's easy.

I'm a paragraph. Click here to add your own text and edit me. It's easy.

I'm a paragraph. Click here to add your own text and edit me. It's easy.

bottom of page