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

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation