1

What does the second statement means ?
int a;
a=5;

  • a is declared with integer type

  • Assigning 5 in a

  • This statement will print 5 on screen

  • Wrong initialization