Pointers - Programming

Q1:

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

int main()
{
    char *str;
    str = "%d\n";
    str++;
    str++;
    printf(str-2, 300);
    return 0;
}

A No output

B 30

C 3

D 30

ANS:A - No output

No answer description is available. Let's discuss.