This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Overview
Download & View C Program To Find Sum Of Integers Between 201 To 300 Whose Individual Digits Are Prime In Nature as PDF for free.
SUM OF INTEGERS BETWEEN 101 AND 200 WHOSE INDIVIDUAL DIGIT'S SUM IS A PRIME NUMBER Program: #include<stdio.h> #include void main() { int i=102, j, k; int sum = 0, digitsum; int prime; clrscr(); do { j = i; digitsum = 0; while (j > 0) { digitsum = digitsum + (j % 10); j = j / 10; } prime = 1; for (k=2; k