283 views
0 votes
0 votes
#include<stdio.h>

int r(){
 static int num=9;
return num--;
}

int main() {
    
for(r();r();r()) {
printf("%d%d",r(),r());
};
return 0;
}

Why is the output 6723 and not 7632?

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
1 answer
4