Last active
July 5, 2019 16:50
-
-
Save SOURAV-ROY/c37e96b7144f560f2fda to your computer and use it in GitHub Desktop.
Revisions
-
SOURAV-ROY revised this gist
Jul 5, 2019 . No changes.There are no files selected for viewing
-
SOURAV-ROY created this gist
Sep 5, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ #include <stdio.h> int main() { int i, n, fact = 1; printf("Enter The Number\n"); scanf("%d", &n); for (i = 1; i <= n; i++) fact = fact*i; printf("Factorial The Number %d = %d\n", n, fact); return 0; }