engineering recuitment Beltron Programmer Mock Test 2024 Programming and Data Structure Programming in C
Which of the following is the correct output for the program code given below?
main () {
void fun();
fun();
fun();
}
void fun() {
static int i = 2;
int j = 6;
printf("%d", (i++));
printf("%d", (j++));
}
1
263646
2
262626
3
374859
4
None of the above