Loading

C - Program to Cyclically Permute the Elements of an Array

C - Program to Cyclically Permute the Elements of an Array 

 


#include <stdio.h>

void main ()
{
 int i,n,number[30];
 printf("Enter the value of the n = ");
 scanf ("%d", &n);
 printf ("Enter the numbers\n");
 for (i=0; i<n; ++i)
 {
  scanf ("%d", &number[i]);
 }
 number[n] = number[0];

 for (i=0; i<n; ++i)
 {
  number[i] = number[i+1];
 }
 printf ("Cyclically permted numbers are given below \n");
 for (i=0; i<n; ++i)
 printf ("%d\n", number[i]);
}

This entry was posted in . Bookmark the permalink.

Leave a reply