#include <stdio.h>
int main(int counter) {
printf("Odd numbers between 15 to 1:\\");
// Set the counter to 15 at the beginning and decrease it after each cycle.
// Check each counter value to see if it is an odd number, and print the result accordingly.
for(counter = 15; counter > 0; counter--) {
if(counter % 2 == 1) {
printf("%d ", counter);
}
}
return 0;
}