Sollicitatievraag bij Arista Networks

(second interview) given the code: void increment( ) { static int i = 0; return ++i; } int main(void) { printf("%d %d", increment( ), increment( ) ); } What would the output be? How would you change printf to output them in the right order?