This program is about print the factorial of given number using Goto statement
#include <stdio.h> int main() { long int a,n=1; printf("\nEnter the number :"); scanf("%ld",&a); start: n=n*a; a--; if(a>0) { goto start; } printf("\nThe Total value is :%ld",n); return 0; }To download raw file Click Here
Enter the number:5 The Total value is:120
Learn All in Tamil © Designed & Developed By Tutor Joes