Pointers - Programming

Q1:

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

int main()
{
    char *str;
    str = "%s";
    printf(str, "K\n");
    return 0;
}

A Error

B No output

C K

D %s

ANS:A - Error

No answer description is available. Let's discuss.