123 Eng

Engineering the engineers™


Latest Jobs   Forum Map

 


Home
Source Codes
Engineering Colleges

Training  Reports
Seminar Reports
Placement Papers

Forums

   Computer Science / IT
   Electronics
   Electrical
   Mechanical
   Chemical
   Civil

   CAT / MBA

   GMAT / Foreign MBA
Latest Jobs

Engineering Jobs / Technical Jobs
Management Jobs

Sitemap
Terms of use

Displaying  Source Code(s)  
 

 
Program for rotation of a string

--------------------------------------------------------------------------------

Description : This program finds out & prints the no. of ways the letters of a given string may be arranged.



:#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
clrscr();
char name[40],bubble,temp[40];
int loop,size,count;
printf("

Enter the word ");
scanf("%s",name);
printf("

");
for(loop=0;loop<strlen(name);loop++)
{
temp[loop]=name[loop];
printf("%c",temp[loop]);
}
for(count=1;count<strlen(name);count++)
{
for(loop=0;loop<(strlen(name));loop++)
{
if(loop==0)
bubble=temp[0];
temp[loop]=temp[loop+1];
temp[strlen(name)]=bubble;
}
printf("

");
for(loop=0;loop<(strlen(name));loop++)
printf("%c",temp[loop]);
}
getch();
}

 

Contribute content or training reports / feedback / Comments
job placement papers
All rights reserved © copyright 123ENG