This program is about print the sum of values up to limit using Goto statement
#include <stdio.h> int main() { int a,n=0; printf("\nEnter the value :"); scanf("%d",&a); start: n=n+a; a--; if(a>=0) { goto start; } printf("\nTotal value :%d",n); return 0; }To download raw file Click Here
Enter the value : 9 Total value : 45
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions