© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Polak Das Shawon
Try this
```#include <stdio.h>
int main(){
int n,o;
printf("Type an integer number:\n");
scanf("%d",&n);
o=1;
while(o<n){
printf("%d\n",o);
o=o+2;
}
} ```