#include<stdio.h>
#include<conio.h>
void main()
{
char str[30];
int i;
clrscr();
printf("\n enter the
string");
gets(str);
for(i = 0; str[i] != 0; i++)
{
if( (i % 2) == 0)
str[i] = tolower(str[i]);
else
str[i] = toupper(str[i]);
}
printf("%s\n", str);
getch();
}