GATE 2025 CS/IT Question 63
GATE2025_CS1_Q63

Consider the following C program:

#include 
int gate (int n) {
  int d, t, newnum, turn;
  newnum = turn = 0; t=1;
  while (n>=t) t *= 10;
  t /=10;
  while (t>0) {
    d = n/t;
    n = n%t;
    t /= 10;
    if (turn) newnum = 10*newnum + d;
    turn = (turn + 1) % 2;
  }
  return newnum;
}
int main () {
  printf ("%d", gate(14362));
  return 0;
}

The value printed by the given C program is ______. (Answer in integer)

Comments

Popular posts from this blog