Showing posts with label C Language. Show all posts
Showing posts with label C Language. Show all posts

Thursday, 1 February 2018

Examples Array in C Language

1.

#include<stdio.h>
int main()
{
    int a[5],sum=0,i;
    for(i=0;i<5;i++)
    {
        printf("Enter the no.");
        scanf("%d",&a[i]);
    }
    for(i=0;i<5;i++)
    {
        sum=sum+a[i];
    }
    printf("sum=%d",sum);
}


2.

#include<stdio.h>
int main()
{
    int a[10],i;
    for(i=0;i<10;i++)
    {
        printf("Enter the no ");
        scanf("%d",&a[i]);
    }
    for(i=9;i>=0;i--)
    {
        printf("\n%d",a[i]);
    }
}


3.

#include<stdio.h>
int main()
{
    int i;
    int a[4],b[4],c[4];
    for(i=0;i<4;i++)
    {
    printf("Enter the a = ");
    scanf("%d",&a[i]);   
    }
    for(i=0;i<4;i++)
    {
    printf("Enter the b = ");
    scanf("%d",&b[i]);   
    }
    for(i=0;i<4;i++)
    {
    c[i]=a[i]+b[i];
    printf("\t%d",c[i]);
    }
}


4.

#include<stdio.h>
int main()
{
    int a[5],g=0,p,i;   
    for (i=0;i<5;i++)
    {
    printf("Enter the no = ");
    scanf("%d",&a[i]);
    }
    for(i=0;i<5;i++)
    {
        if(g<a[i])
        {
            g=a[i];
            p=i+1;
        }
    }
    printf("Greatest = %d",g);
    printf("Position of no. = %d",p);
}


5.

#include<stdio.h>
int main()
{
    int i,j;
    int a[3][4],b[3][4],c[3][4];   
    for(i=0;i<3;i++)
    {
        for(j=0;j<4;j++)
        {
        printf("Enter the a = ");
        scanf("%d",&a[i][j]);   
        }
    }
    for(i=0;i<3;i++)
    {
        for(j=0;j<4;j++)
        {
        printf("Enter the b = ");
        scanf("%d",&b[i][j]);
        }
    }   
    for(i=0;i<3;i++)
    {
        for(j=0;j<4;j++)
        {
        c[i][j]=a[i][j]+b[i][j];
        printf("\t%d",c[i][j]);
        }
        printf("\n");
    }
}


6.

#include<stdio.h>
int main()
{
    int i,j;
    int a[3][4];
    for(i=0;i<3;i++)
    {
        for(j=0;j<4;j++)
        {
        printf("Enter the no= ");
        scanf("%d",&a[i][j]);
        }
        printf("\n");
    }
    for(i=0;i<3;i++)
    {
        for(j=0;j<4;j++)
        {
            printf("\t%d",a[i][j]);
        }
        printf("\n");
    }
}

Examples Function in C Language

1.

#include<stdio.h>
int main()
{
    int power(int,int);
    int p,a,b;
    printf("Enter the no. ");
    scanf("%d",&a);
    printf("Enter The Power ");
    scanf("%d",&b);
    p=power(a,b);
    printf("p=%d",p);
}
power(int x,int y)
{
    int i,a=1;   
    for(i=1;i<=y;i++)
    {
        a=a*x;
    }
    return(a);
}


2.

#include<stdio.h>
int main()
{
    float area (float);
    float aoc,r;
    printf("Enter the circle of radius .");
    scanf("%f",&r);
    aoc=area(r);
    printf("aoc=%f",aoc);
}
area(float rad)
{
    float a,pi=3.14;
    a=pi*rad*rad;
    return(a);
}


3.

#include<stdio.h>
int main()
{
    void avg(int,int);
    int a,b;
    printf("Enter the number");
    scanf("%d%d",&a,&b);
    avg(a,b);   
}
sum(int x,int y)
{
    int z;
    z=x+y;
    return(z);
}
avg(int p,int q)
{
    float r,av;
    r=sum(p,q);
    av=r/2;
    printf("\nSum=%f",r);
    printf("\nAvg=%f",av);
}


4.

#include<stdio.h>
int main()
{
    int prime(int);
    int a;
    printf("Enter the no = ");
    scanf("%d",&a);
    prime(a);
}
prime(int a)
{
    int i,y,x=0;
    if((a==1)||(a==2))
    {
        printf("prime no");
    }
    else
    {
        for(i=2;i<a;i++)
        {
            if((a%i)==0)
            {   
                x=1;
                y=i;
                printf("\n no is divid by %d",y);
            }
        }
        if(x==1)
        {
            printf("\nThen no is not prime");
        }
        else
        {
            printf("prime no");   
        }
    }
}


5.

#include<stdio.h>
float c;
sum(float a,float b)
{
    c=a+b;
    return(c);
}
diff(float a,float b)
{
    c=a-b;
    return(c);
}
mul(float a,float b)
{
    c=a*b;
    return(c);
}
div(float a,float b)
{
    c=a/b;
    return(c);
}
mod(int a,int b)
{
    int d;
    d=a%b;
    return(d);
}
int main()
{
    int ch,d,x,y;
    float a,b;
    printf("for sum prace 1,for deffrence prace 2,for mul prace 3,for division prace 4,for modlus prace 5");
    printf("\nEnter the ch=");
    scanf("%d",&ch);
    switch(ch)
    {
    case 1:
        printf("Enter the no=");
        scanf("%f%f",&a,&b);
        c=sum(a,b);
        printf("Sum=%f",c);
        break;
    case 2:
        printf("Enter the no=");
        scanf("%f%f",&a,&b);
        c=diff(a,b);
        printf("Diff=%f",c);
        break;
    case 3:
        printf("Enter the no=");
        scanf("%f%f",&a,&b);
        c=mul(a,b);
        printf("Mul=%f",c);
        break;
    case 4:
        printf("Enter the no=");
        scanf("%f%f",&a,&b);
        c=div(a,b);
        printf("Div=%f",c);
        break;
    case 5:
        printf("Enter the no=");
        scanf("%d%d",&x,&y);
        d=mod(x,y);
        printf("Mod=%d",d);
        break;
    default:
        printf("Wrong Choice");
       
    }
}


Example Recursive Function in C Language

Write a program to calculate the factorialof a positiv intger using recursive function.

long int fact(n)
int n;
{
long int result;
if(n==0)
result=1;
else
result=n*fact(n-1);
return (result);
}
voidmain( )
{
int I;
for(i=0;i<10;i++)
{
printf(“%d\n”,i,fact(i));
}
}



Output:

0!=1
1!=1
2!=2
3!=6
4!=24
5!=120
6!=720
7!=5040
8!=40320
9!=362880
10!=3628800

Example do-While Loop in C Language

1.Write a program to evaluate the factorial value of a integer no.

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int n,i,fact=1;
printf(“enter the no”);
scanf(“%d”,&n);
i=1;
if(n>1)
do
{
fact=fact*i;
i++;
}
while(i<=n);
printf(“\n factorial value=%d”,fact);
getch( );
}

Output:

enter the no 9
factoria value=362880

2.Write a program find out the table of the intger no.

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int n,m,I;
printf(“enter the no”);
scanf(“%d”,&n);
i=1;
do
{
m=n*I;
printf(“%d%d=%d”,n,I,m);
i++;
}
while(i<=10);
getch( );
}

Output:

Enter the no 9
9*1=9
9*2=18
9*3=27
9*4=36
9*5=45
9*6=54
9*7=63
9*8=72
9*9=81
9*10=90

Example for Loop in C Language

1.Write a program to evaluate the factorial value of a integer no.

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int n,i,fact=1;
printf(“enter the no”);
scanf(“%d”,&n);
if(n>1)
for(i=1;i<=n;i++)
{
fact=fact*i;
}
printf(“\n factorial value=%d”,fact);
getch( );
}

Output:

enter the no 6
factoria value=720

2.Write a program tofind out the sum of n integer numbrs.

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int n,i,sum=0;
printf(“enter the no”);
scanf(“%d”,&n);
for(i=1;i<=n;i++)
{
sum=sum+i;
}
printf(“\n sum=%d”,sum);
getch( );
}

Output:

enter the no 20
sum=210

3.Write a program find out the table of the intger no (using for loop).

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int n,m,I;
printf(“enter the no”);
scanf(“%d”,&n);
for(i=1;I<=n;i++)
{
m=n*I;
printf(“%d%d=%d”,n,I,m);
}
while(i<=10);
getch( );
}

Output:

Enter the no 5
5*1=5
5*2=10
5*3=15
5*4=20
5*5=25
5*6=30
5*7=35
5*8=40
5*9=45
5*10=50

4.Write a program to calculates fabonacii series.

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int a=0,b=1,I,c,n;
printf(“enter the no”);
scanf(“%d”,&n);
printf(“%d”,a);
printf(“%d”,b);
printf(“%d”,b);
for(i=1;i<=n;i++)
{
C=a+b;
printf(“\t%d”,c);
a=b;
b=c;
}
printf(“\n n=%d”,n);
getch( );
}

Output:

enter the no 10
0 1 1 2 3 5 8 13 21 34 55 89 144
n=10

Example While Loop in C Language

1.Write a program to evaluate the factorial value of a integer no.


#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int n,i,fact=1;
printf(“enter the no”);
scanf(“%d”,&n);
i=1;
if(n>1)
while(i<=n)
{
fact=fact*i;
i++;
}
printf(“\n factorial value=%d”,fact);
getch( );
}

Output:

enter the no 5
factoria value=120


2.Write a program tofind out the sum of n integer numbrs(using while loop).

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
int n,i,sum=0;
printf(“enter the no”);
scanf(“%d”,&n);
i=1;
while(i<=n)
{
sum=sum+i;
i++;
}
printf(“\n sum=%d”,sum);
getch( );
}

Output:

enter the no 100
sum=5050