Let us C Solution | Chapter 16 Exercise B c Reverse strings stored in array of pointers to strings
Duration: 5:58 Min | Sep 29, 2023
Write a program to reverse the strings stored in the following array of pointers to strings:
char *s[ ] = {
"To err is human...",
"But to really mess things up...",
"One needs to know C!!"
} ;