PDTry 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; } } ```Comment·Thread·Apr 14, 2020·My code just prints an infinite loop of "1".