multiples of 3 or 5

PHOTO EMBED

Fri Oct 20 2023 12:15:19 GMT+0000 (Coordinated Universal Time)

Saved by @usman_hamed

#include<stdio.h>
int main()
{
    int m=0,l=100000;
    while (m<=100000){
        while(m%3==0 || m%5==0)
        printf("%d.\n",m++);
        m++;
    }
    m++;
}
content_copyCOPY