Open In App

GATE | GATE-CS-2004 | Question 33

Last Updated : 28 Jun, 2021
Like Article
Like
Save
Share
Report

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 (GATE CS 2004)

(A) gnirts
(B) gnirt
(C) string
(D) no output is printed


Answer: (D)

Explanation: See question 1 of https://www.geeksforgeeks.org/c-language-set-2/

Quiz of this Question


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads