#include <stdio.h> int main() { char greeting[]="Hello World"; greeting[5]='j'; printf("%c",greeting[5]); printf("%s",greeting); return 0; }