need help with my program. it keeps repeating (NULL) instead of preinting hello backwards. if remove ca[5] i get bus error. any help please on how to fix it.
#include <stdio.h>
int main()
{
char ca[10];
ca[0] = 'H';
ca[1] = 'e';
ca[2] = 'l';
ca[3] = 'l';
ca[4] = 'o';
ca[5] = '\0';
printf("%s", ca[5],ca[4],ca[3],ca[2],ca[1],ca[0]);
getchar();
return 0;
}