Declarations and Initializations - Programming

Q1:

Point out the error in the following program.
#include<stdio.h>
int main()
{
    void v = 0;

    printf('%d', v);

    return 0;
}

A Error: Declaration syntax error 'v' (or) Size of v is unknown or zero.

B Program terminates abnormally.

C No error.

D None of these.

ANS:A - Error: Declaration syntax error 'v' (or) Size of v is unknown or zero.

No answer description is available.