Below is the code to print each word backward
Example if Input is “This is Sparta”
Out put should be “sihT si atrapS”
… Read More Example if Input is “This is Sparta”
Out put should be “sihT si atrapS”
Thanks to Dhaval for suggesting this approach
#include<stdio.h>
#include<string.h>
int main()
{