Young Generation zone

Different kinds of audio clip , video clip and Magazines are available here

Recent Posts

Saturday, 9 January 2016

Run number by web code

#include <stdio.h> int main(){   int n, sum = 0, c, value;    printf("Enter the number of integers you want to add\n");   scanf("%d", &n);    printf("Enter %d integers\n",n);    for (c = 1; c <= n; c++)   {      scanf("%d",&value);      sum = sum + value;   }    printf("Sum of entered integers = %d\n",sum);    return 0;}

Run mozilla
Then You can see output

Enter the number of integers you want to add 4 Enter 4 integers 23 2 34 2 Sum of entered integers = 61

No comments:

Post a Comment