| Current Path : /var/www/html/venkat/check3/file/rgiit/ |
| Current File : /var/www/html/venkat/check3/file/rgiit/rit2015060_2.c |
/* c program to print the multiple of 3 upto n */
#include<stdio.h>
int main()
{
int i,n;
printf("value of n");
scanf("%d",&n);
for(i=1;i<=n/3;i++)
{
printf("%d\t",3*i);
}
return 0;
}