Connect Me

twitterfacebookgoogle plus email

  Instagram View Biwas Bhattarai's profile on LinkedIn

C Program to display first odd numbers from 1 to 15.


#include<stdio.h> #include<conio.h> int main() { int i;
printf("Odd numbers from 1 to 15:\n");
for(i=1;i<=15;i=1+2)
 {
printf("%d\n",i);
 }
 getch();
 }
Ą
https://www.flickr.com/photos/spklg/15211044551/