What is the output printed by the following C code?
#include <stdio.h>
int main()
{
char a [6] = "word" ;
int i, j ;
for (i=0, j=5; i<j; a[i++] = a [j--])
printf ("%s\n", a);
}
dlrow
Null string
dlrld
worow
not understand