<pre>

/*Program for Reversing a line of text*/

#include 
#include 
void main()
{
char str[80],ch;
int len=0,i=0;
clrscr();
printf("nnnttt Program for Reversing a line of text");
printf("nnnttt Enter a line of Text:");
printf("nt >> ");
fflush(stdin);
scanf("%[^'n']",str);

i=0;
while(str[i]!='')
{
len++;
i++;
}
len=len-1;
printf("nnt Reverse = ");
for(i=len;i>=0;i--)
{
ch=str[i];
if(ch>=97 && ch<=123)
ch=ch-32;
printf("%c",ch);
}

getch();
}
</pre>

Related Posts

आज से विश्व कप का आगाज: रिजर्व-डे से लेकर सुपरओवर तक, 17 पॉइंट्स में जानें इस टूर्नामेंट से जुड़ी हर ...
worldeye
October 6, 2023
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore ...
worldeye
January 23, 2022
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore ...
worldeye
January 23, 2022