#include<stdio.h>  #include<conio.h>  void main(){   int i,fact=1,number;   clrscr();   printf(“Enter a number: “);   scanf(“%d”,&number);   for(i=1;i<=number;i++){       fact=fact*i;   } …
#include<stdio.h>Â Â Â #include<conio.h>Â Â Â void main(){Â Â Â Â int i,fact=1,number;Â …
#include<stdio.h> #include<conio.h> long factorial(int n) // function to calculate the …
#include #include main() { int n,r,sum=0,temp; //declaration of variables. clrscr(); …
#include<stdio.h> #include<conio.h> main() { int n, reverse=0, rem; //declaration of …
The argument passed to the main() function while executing the …
The sprintf() stands for “string print.” The sprintf() function does …
malloc() The malloc() function is used to allocate the memory …
