How to find factorial of a number using funcation || Ansh Computer

Admin Co-Vinay Kumar Verma
0

How to find factorial of a number using funcation || Ansh Computer


factorial of a number using funcation

 

Post By: Co- Founder, Vinay Kumar Verma

आज के इस पोस्ट में बताऊंगा की How to find factorial of a number using funcation  बनाएंगे सी प्रोग्रामिंग इसमें एक नया प्रोग्राम जिसमें हम लोग फ़ैक्टोरियल नंबर फाइंड कर रहे होंगे किसी नंबर का फैक्टोरियल नंबर का प्रोग्राम पहले ही बनाया नॉरमल प्रोग्राम में आप उसको भी हमारे पोस्ट और यूट्यूब चैनल पर देख सकते हो,

 

➤➤ये भी पढ़े:- How to calculate Factorial of numbers

Source Code

#include<stdio.h>

Void main()

{

Int factorial (int);

Int num,fact;

printf("Enter the number");

scanf("%d,&num);

fact=factorial(num);

printf("Factorial of%d is=%d",num,fact);

}

int factorial(int num)

{

int fact=1;

for(;num>0;num--)

               fact=fact*num;

return fact;

}



 इस प्रोग्राम को विडियो के माध्यम से भी देख सकते हैं


➤➤C- Language All Post   Click Here

निवेदन:-अगर आपको यह पोस्ट पसंद आयी है तो हमें comment के माध्यम से बतायें तथा अपने दोस्तों के साथ share करें. धन्यवाद.

 

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
Post a Comment (0)
Our website uses cookies to enhance your experience. Learn More
Accept !