Programming in C
Casual Mode - Take your time!
1 / 5
Correct
0
Incorrect
0
Score
0%
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;
}
- 10
- 25
- Garbage value
- Error in the program
- None of these