New Technology is Common, New thinking is rare
Download Now
#include<stdio.h> int main() { int g,f,i; printf("Type a number to find factorial: "); scanf("%d",&g); f=1; for(i=1;i<=g;i++) f = f * i; printf("Factorial: %d",f); return 0; }
Bhuvan Arora
Post a Comment
No comments:
Post a Comment