Pointers - Programming

Q1:

What will be the output of the program ?
#include<stdio.h>

int main()
{
    printf("%c\n", 7["AptitudeCrack"]);
    return 0;
}

A Error: in printf

B Nothing will print

C print "X" of AptitudeCrack

D print "7"

ANS:A - Error: in printf

No answer description is available. Let's discuss.