Computer Science, asked by Nitish9735, 1 year ago

How many times while loop is executed if a short int is 2 byte wide?  int i=1;  while(i <= 155)  {  printf("%c %d ", i, i);  i++;  }?

Answers

Answered by FocusBlast
0
155 times i guess. because here i is 1 and the condition is less than or equal to 155
Similar questions