Library Functions - Programming

Q1:

Point out the error in the following program.
#include<stdio.h>

int main()
{
    char str[] = 'AptitudeCrack';
    printf('%.#s %2s', str, str);
    return 0;
}

A Error: in Array declaration

B
Error: printf statement

C Error: unspecified character in printf

D No error

ANS:A - Error: in Array declaration

No answer description is available. Let's discuss.