Input / Output - Programming

Q1:

Will the following program work?
#include<stdio.h>

int main()
{
    int n=5;
    printf('n=%*d\n', n, n);
    return 0;
}

A Yes

B No

ANS:A - Yes

It prints n= 5