April 25, 2024

Telugu Tech Tuts

TimeComputers.in

C in Telugu goto statement Part 26

C in Telugu

In C programming, goto statement is used for altering the normal sequence of program execution by transferring control to some other part of the program.
Syntax of goto statement

goto label;
………….
………….
………….
label:
statement;

In this syntax, label is an identifier. When, the control of program reaches to goto statement, the control of the program will jump to the label: and executes the code below it.

Working of goto statement in C programming
Example of goto statement

/* C program to demonstrate the working of goto statement. */
/* This program calculates the average of numbers entered by user. */
/* If user enters negative number, it ignores that number and
calculates the average of number entered before it.*/

# include
int main(){
float num,average,sum;
int i,n;
printf(“Maximum no. of inputs: “);
scanf(“%d”,&n);
for(i=1;i<=n;++i){ printf("Enter n%d: ",i); scanf("%f",&num); if(num<0.0) goto jump; /* control of the program moves to label jump */ sum=sum+num; } jump: average=sum/(i-1); printf("Average: %.2f",average); return 0; }