šŸ“š Practice Mode

Programming in C

Learn at your own pace with hints and detailed explanations

1 / 5
Multiple Choice

Find out the output of the given program or error if any.

static int i=10;
int main()
{     
i=25;       // line 4     
printf(%d,i);     
return 0;
}

  1. 10
  2. 25
  3. Garbage value
  4. Error in the program
  5. None of these