सी-भाषा में एक प्रोग्राम लिखिए, जो एक से बीस तक की सभी संख्याओं का योग छापे। इस प्रोग्राम का आउटपुट क्या होगा? वह भी लिखिए।
Answers
Answered by
2
Answer:
प्रोग्राम का आउटपुट क्या होगा? वह भी लिखिए। ... में एक प्रोग्राम लिखिए, जो एक से बीस तक की सभी संख्याओं का योग छापे।
Answered by
0
Answer:
सी-भाषा में पहली बीस संख्याओं का योग देने वाला प्रोग्राम निम्न लिखित है:
#include <stdio.h>
int main() {
int n = 21; /* loop variable definition */
int sum=0, s=0; /* sum var definition */
for(int i = 1; i< n; i++){ /* loop upto n=20 */
sum += i;
} /*printing the sum*/
printf("the sum of numbers till %d is %d", n,sum);
return 0;
}
#SPJ3
Similar questions
Math,
4 months ago
Social Sciences,
4 months ago
English,
9 months ago
Computer Science,
9 months ago
Physics,
1 year ago