ANSWER : C
Explanation :
int a = printf("00"); printf("%d",a);
printf() function returns the number of characters being printed on screen. Hence "2" gets stored in variable "a". Therefore the final output is "002".