Program to show swap of two no’s without using third variable
#include<stdio.h>
#include<conio.h>
void main()
{
int...
C Program to reverse a given number !
#include<stdio.h>
#include<conio.h>
void main()
{
int num,rem,rev=0;
clrscr();
printf("nEnter any no to be...
C Program to Implement Calender Program to display Day of the month
Calender Program in C Programming Language : Display Day of the month
Calender Program in C Programming Language :
Program...
C Program to find Factorial of Number without using function
Find Factorial of Number without using function
#include<stdio.h>
#include<conio.h>
void main()
{
int i,number,factorial;
printf("nEnter...
C Program to print table of n and square of n using pow()
Print Table of n and Square of n
#include<stdio.h>
#include<conio.h>
void main()
{
int n;
printf("Not...
Find Factorial of Number Using Recursion
#include<stdio.h>
#include<conio.h>
int fact(int);
void main()
{
int x,n;
printf("nEnter the value of n :");
...
Subscribe to:
Posts (Atom)