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;
}

Meta’s stock surges on...

Meta Platforms Stock Soars on Blockbuster Q4 Earnings and...

Do hedgehogs have heat...

Unraveling the Mystery: Do Hedgehogs Experience Heat Cycles? For those...

I made one change...

The One TV Setting Change That Instantly Improves Your...

Which scientist born in...

Ernst Öpik: The Legendary Astrophysicist Born on November 13th In...

Master Chief voice actor...

Master Chief Voice Actor Steve Downes Slams Unauthorized AI...

Hotel software maker Mews...

Mews Secures Massive $300M Series D Round, Hitting $2.5...

Meta’s stock surges on strong earnings, revenue and bullish guidance

Meta Platforms Stock Soars on Blockbuster Q4 Earnings and Bullish Outlook Meta Platforms Inc., the parent company of Facebook, Instagram, and WhatsApp, delivered a massive...

Do hedgehogs have heat cycles?

Unraveling the Mystery: Do Hedgehogs Experience Heat Cycles? For those fascinated by the natural world, the reproductive habits of unique mammals often raise curious questions....

I made one change and streaming instantly got better

The One TV Setting Change That Instantly Improves Your Streaming Experience If you've recently upgraded to a new smart TV and noticed that your favorite...

Which scientist born in 13 november?

Ernst Öpik: The Legendary Astrophysicist Born on November 13th In the vast calendar of scientific history, certain dates mark the beginning of groundbreaking lives. November...

Master Chief voice actor Steve Downes says AI voice cloning crosses a line and wants it to stop

Master Chief Voice Actor Steve Downes Slams Unauthorized AI Voice Cloning The iconic voice behind the legendary Master Chief of the Halo series, Steve Downes,...

Hotel software maker Mews nabs $300M at $2.5B valuation

Mews Secures Massive $300M Series D Round, Hitting $2.5 Billion Valuation The landscape of hospitality technology is rapidly evolving, and few companies are making a...

Lagos forum launches scholarship drive for indigent secondary students

Lagos Gentry Forum Launches Crucial Scholarship Drive for Indigent Students In a significant move aimed at democratizing access to tertiary education, the Lagos Gentry Forum...

Quick News: Red, Custom, Fix, Bambo, Kenan

President Claremont and King James III Return: 'Red, White & Royal Wedding' Sequel Confirmed Fans of the beloved romantic comedy Red, White & Royal Blue...

AGI Needs World Models and State of World Models

Demis Hassabis: AGI Requires 'World Models,' LLMs Alone Are Not Enough In the fiercely competitive race toward Artificial General Intelligence (AGI), the CEOs of leading...