Consider the following statements in C to write a program in their order of occurrence :
A. Printf("%d", i);
B. void main ( )
C. int i=5;
D. #include <stdio.h>
Choose the correct answer from the options given below :
Show Hint
Remember the skeleton: Include $\to$ Main $\to$ Declare $\to$ Execute. You can't use a tool (printf) without its manual (stdio.h), and you can't print a variable (i) before you create it!