Consider the following C program segment:char p[20]; char *s = "string"; int length = strlen(s); int i; for (i = 0; i < length; i++) p[i] = s[length - i]; printf("%s",p);The output of the program is
Reveal answer
Fill a bubble to check yourself