Answers

Question and Answer:

  Home  C C++ Errors

⟩ void main(){int i=7;printf("N= %*d",i,i);}

Its output would be 7,

"%*d"

here * symbol doesn't affect of operation of %d.

so 7 is set to value in variable i.

 141 views

More Questions for you: