Skip to main content

Find Sum to first n numbers (using goto).

PROCEDURE:-

  1. input value for n
  2. set initial values for sum as 0 and I as 1
  3. add I to sum and increment I by 1
  4. if I is less than or equal to n goto step 3
  5. print the sum


CODE:-

#include<stdio.h>
void main()
{
  int n, i=1, sum=0;
  printf(“enter value for n”);
  scanf(“%d”,&n);
  abc:
       sum=sum+i;
       i=i+1;
       if (i<=n) goto abc;
   printf(“sum upto %d numbers is %d”,n,sum);
}



Input:- enter value for n
                 n=5
Output:- sum upto 5 numbers is 15

Comments

Popular posts from this blog

Find Value of S=ut+1/2*a*t**2.

PROCEDURE:-        1.enter values for u,a,t to find distance        2.find distance with the formulae ut+1/2at 2        3.print the above result CODE:- #include<stdio.h> #include<conio.h> void main() {   float u,t,a,S;   clrscr();   printf(“enter values u,t,a”);   scanf(“%f %f %f”, &u,&t,&a);   S=(u*t)+(0.5*a*t*t);   printf(“\n  S = %f”, S); } Input:- enter values u,t,a               U=10,t=4,a=4.9 Output:- S =79.200