A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a program in C to find Harshad Number between 1 to 100
Q:

Write a program in C to find Harshad Number between 1 to 100

0

Write a program in C to find Harshad Number between 1 to 100


Expected Output :
The Harshad Numbers are: 1 2 3 4 5 6 7 8 9 10 12 18 20 21 24 27 30 36 40 42 45 48 50 54 60 63 70 72 80 81 84 90 100

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

# include <stdio.h>
# include <stdlib.h>
# include <stdbool.h>


bool chkHarshad(int n)
{
    int s = 0;
	int tmp;
    for (tmp=n; tmp>0; tmp /= 10)
        s += tmp % 10;
    return (n%s == 0);
}
int main()
{
    int i;
	printf("\n\n Find Harshad Numbers between 1 to 100: \n");
	printf(" ---------------------------------------------------\n");
	printf(" The Harshad Numbers are: ");
for(i=1;i<=100;i++)
{
     if( chkHarshad(i))
	printf("%d ",i);
}
	printf("\n");

}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now