Sponsors

How To Reverse A String Without Reversing The Punctuation On That Line – The Shining Part 3 Problem Solution In C

The Shining-Part3
Assume, in \The Shining-Part3″, the son makes it even worse by reversing the words in a sentence in place
but leaving the punctuations as they are. For example, the son writes \NUR, REHTOM! REDRUM!!” to
mean \RUN, MOTHER! MURDER!!”. Now the mother needs to understand the full sentence as it is but
she cannot get it through a mirror.
This time for the Part-3 of the lm, alert the mother by writing another code.

#include

int check(char c);
void print(char s[], int length);
int strlength(char s[]);
int main()
{
int i, j, length;
char s[5000], s1[5000];
printf(“Enter the string\n”);
gets(s);
///printf(“%d\n”,strlen(s));
///puts(s);
length=strlength(s); /// a function to determine the lenght of the string
///printf(“%d %d %d %d”,’A’,’a’,’Z’,’z’);
printf(“corrected string: “);
for(i=0,j=0;i<length;i++) { if(check(s[i])==1) /// a function to check s[i] { s1[j]=s[i]; j++; } else { print(s1,j); /// a function to reverse the word and print j=0; printf(“%c”,s[i]); } } print(s1,j); printf(“\n”); return 0; } int check(char c) { if(c>=’A’ && c<=’Z’) return 1; if(c>=’a’ && c<=’z’) return 1; return 0; } void print(char s[], int length) { int i; for(i=length-1;i>=0;i–)
{
printf(“%c”,s[i]);
}
}
int strlength(char s[])
{
int i;
for(i=0;s[i]!=’\0′;i++);
return i;
}

Dogs and cats seized...

Massive Animal Rescue in Lake Hughes Sparks Legal Battle...

Colorectal cancer is top...

The Rising Threat: Colorectal Cancer in Young Adults Recent health...

North Carolina’s economic dean...

North Carolina’s Economic Outlook: An Update from the State’s...

HSBC layoffs soon? Wall...

HSBC Reportedly Planning Massive Layoffs in AI-Driven RestructuringThe global...

The Dark Origins of...

From Torture to Training: The Grim History of Your...

More Evidence Season 5...

Is Eloise Bridgerton the Next Lead? New Clues for...

Dogs and cats seized in record-breaking animal rescue could be caged for months as accused hoarder claims innocence

Massive Animal Rescue in Lake Hughes Sparks Legal Battle Over Hundreds of Pets In what is being described as one of the largest animal rescue...

Colorectal cancer is top killer for young adults. A 5K helps raise awareness – St. Augustine Record

The Rising Threat: Colorectal Cancer in Young Adults Recent health data has revealed a startling and somber trend in the United States: colorectal cancer has...

North Carolina’s economic dean gives an update

North Carolina’s Economic Outlook: An Update from the State’s Economic Dean North Carolina remains at a pivotal crossroads as we navigate the complexities of the...

HSBC layoffs soon? Wall Street giant may slash 20,000 roles amid AI-led overhaul, says report

HSBC Reportedly Planning Massive Layoffs in AI-Driven RestructuringThe global banking landscape is on the verge of a significant transformation as HSBC, one of the...

The Dark Origins of the Treadmill and Why Oscar Wilde was the Worst

From Torture to Training: The Grim History of Your Favorite Gym EquipmentMost people today step onto a treadmill to improve their cardiovascular health, burn...

More Evidence Season 5 Of Bridgerton Will Be About Eloise (And Not Francesca)

Is Eloise Bridgerton the Next Lead? New Clues for Season 5With the official confirmation that Benedict Bridgerton will lead the fourth season of Netflix’s...

What color do eagles see?

The Incredible Vision of Eagles: Beyond the Human SpectrumEagles have long been celebrated as the masters of the sky, but their prowess isn't just...

Northeast Texas lithium production picking up, could play major role in energy independence

The Surge of Lithium Extraction in Northeast Texas The landscape of American energy is shifting, and surprisingly, the spotlight has turned toward Northeast Texas. Historically...

AgelessRx 2026: Longevity Telehealth Platform Overview — Treatments, Pricing, Compounded Medications, and What Prospective Patients Should Know

AgelessRx 2026: Revolutionizing Longevity and Anti-Aging Telehealth As we move into 2026, the quest for a longer, healthier life has transitioned from a niche pursuit...