Write a C program to print all numbers between 1 to 100 which divided by a specified number and the remainder will be 3.
[catlist name="c-programming-tutorial" link_target=_blank numberposts=16]
Program:--
#include<stdio.h>
main()
{
int i;
for(i=1; i<=100; i++)
{
printf("%d\n",i);
}
}
Output
1
2
3
4
5
6
7
.
.
.
.
.
.
100