| Current Path : /var/www/html/venkat/check3/file/cg2013/ |
| Current File : /var/www/html/venkat/check3/file/cg2013/rit2015052_2.c |
#include <stdio.h>
int main()
{
int n;
int i;
printf("Enter the number here: ");
scanf("%d", &n);
for (i = 3; i <= n; i = i+3)
{
printf("%d ", i);
}
printf("\n");
return 0;
}