What will be the output of the program ?
#include<stdio.h>
#include<coni...
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will be the output of the program ?#include<stdio.h>#include<conio.>int main(){char sentence[80];int i;printf("Enter a line of text\n");gets(sentence);for(i=strlen(sentence)-1;i >=0; i--)putchar(sentence[i]);return 0;}