int listings() { for (int x = 0; x < 5; x++) { for (int y = 0; y < 5; x++) { printf("%d, %d", x, y); } } return 0; }