-->

program for division and multiplication of two numbers using pointer

using codeblocks
------------------------------------------------------------------------
//division and multiplication of two numbers using pointer     //comment of program
#include <stdio.h>                     //header file
int main()
{
    float *p,*p1;                        //two pointer declaration
    float x,y;                           //variable declaration
    printf("enter two values for x and y\n");//prints message
    scanf("%f%f",&x,&y);                    // gets input
    p=&x,p1=&y;                        //assigning address to that pointer
    printf("the address of x(%f) is=%f\n",x,p);//display of that address
    printf("the address of y(%f) is=%f\n",y,p1);//display of address of second variable
    printf("the product=%f\n",(*p)*(*p1)); 
 //display of multiplication stored in that address. we display that using indirection operator

    printf("the quotient=%f",(*p)/(*p1));//display of quotient part
    return 0;
}
-------------------------------------------------------------------------------------------------------
using turboc++
-----------------------------------------------------------------------------------------------------
//division and multiplication of two numbers using pointer     //comment of program
#include <stdio.h>                     //header file
#include<conio.h>
int main()
{
    float *p,*p1;                        //two pointer declaration
    float x,y;                           //variable declaration
    printf("enter two values for x and y\n");//prints message
    scanf("%f%f",&x,&y);                    // gets input
    p=&x,p1=&y;                        //assigning address to that pointer
    printf("the address of x(%f) is=%f\n",x,p);//display of that address
    printf("the address of y(%f) is=%f\n",y,p1);//display of address of second variable
    printf("the product=%f\n",(*p)*(*p1));    
//display of multiplication stored in that address. we display that using indirection operator

    printf("the quotient=%f",(*p)/(*p1));//display of quotient part
   getch();
    return 0;
}

program to get difference of two numbers using pointer

using codeblocks
-------------------------------------------------------------------------------------------------------------

//difference of two numbers using pointer     //comment of program
#include <stdio.h>                     //header file
int main()
{
    int *p,*p1;                      //two pointer declaration
    int x,y;                           //variable declaration
    printf("enter two values for x and y\n");//prints message
    scanf("%d%d",&x,&y);                    // gets input
    p=&x,p1=&y;                        //assigning address to that pointer
    printf("the address of x(%d) is=%d\n",x,p);//display of that address
    printf("the address of y(%d) is=%d\n",y,p1);//display of address of second variable
    printf("the difference=%d\n",*p-*p1);   
//display of difference stored in that address. we display that using indirection operator
    return 0;
}

-----------------------------------------------------------------------------------
using turbo c++
-----------------------------------------------------------------------------------------------------
//difference of two numbers using pointer     //comment of program
#include <stdio.h>                     //header file
#include<conio.h>                    //header file
int main()
{
    int *p,*p1;                      //two pointer declaration
    int x,y;                           //variable declaration
    printf("enter two values for x and y\n");//prints message
    scanf("%d%d",&x,&y);                    // gets input
    p=&x,p1=&y;                        //assigning address to that pointer
    printf("the address of x(%d) is=%d\n",x,p);//display of that address
    printf("the address of y(%d) is=%d\n",y,p1);//display of address of second variable
    printf("the difference=%d\n",*p-*p1);   
//display of difference stored in that address. we display that using indirection operator
   getch();                              //holds the output
    return 0;
}

program to get sum of two numbers using pointer

using codeblocks
----------------------------------------------------------------------
//sum of two numbers using pointer     //comment of program
#include <stdio.h>                     //header file
int main()
{
    int *p,*p1;                      //two pointer declaration
    int x,y;                           //variable declaration
    printf("enter two values for x and y\n");//prints message
    scanf("%d%d",&x,&y);                    // gets input
    p=&x,p1=&y;                        //assigning address to that pointer
    printf("the address of x(%d) is=%d\n",x,p);//display of that address
    printf("the address of y(%d) is=%d\n",y,p1);//display of address of second variable
    printf("the sum=%d\n",*p+*p1); 
 //display of sum stored in that address. we display that using indirection operator
    return 0;
}
-----------------------------------------------------------------------------------------------
using turboc++
------------------------------------------------------------------------------------------
//sum of two numbers using pointer     //comment of program
#include <stdio.h>                     //header file
#include<conio.h>
int main()
{
    int *p,*p1;                      //two pointer declaration
    int x,y;                           //variable declaration
    printf("enter two values for x and y\n");//prints message
    scanf("%d%d",&x,&y);                    // gets input
    p=&x,p1=&y;                        //assigning address to that pointer
    printf("the address of x(%d) is=%d\n",x,p);//display of that address
    printf("the address of y(%d) is=%d\n",y,p1);//display of address of second variable
    printf("the sum=%d\n",*p+*p1);    
//display of sum stored in that address. we display that using indirection operator
    getch();
    return 0;
}


Program to show pointer for increment and decrement operator.

using codeblocks
---------------------------------------------------------------------------

//understanding pointer  increment and decrement              //comment of program
#include <stdio.h>                     //header file
int main()
{
    int *pointer;                      //pointer declaration
    int x=4;                           //value assignment
    pointer=&x;                        //assigning address to that pointer
    printf("the address of x is=%d\n",pointer);//display of that address
    printf("the  value of x=%d\n",*pointer);    //display of value stored in that address. we display that using indirection operator
   pointer++;                             //increment of address by 1
   printf("pointer ++=%d\n",pointer);       //display of that address
   pointer--;                            //pointer decrement
   printf("pointer --=%d",pointer);       //display of that address

    return 0;
}


-------------------------------------------------------------------------------------------------------------
using turboc++
----------------------------------------------------------------------------------------------------------
//understanding pointer  increment and decrement              //comment of program
#include <stdio.h>                     //header file
#include<conio.h>
int main()
{
    int *pointer;                      //pointer declaration
    int x=4;                           //value assignment
    pointer=&x;                        //assigning address to that pointer
    printf("the address of x is=%d\n",pointer);//display of that address
    printf("the  value of x=%d\n",*pointer);    //display of value stored in that address. we display that using indirection operator
   pointer++;                             //increment of address by 1
   printf("pointer ++=%d\n",pointer);       //display of that address
   pointer--;                            //pointer decrement
   printf("pointer --=%d",pointer);       //display of that address
  getch();                                           //to hold the output
    return 0;
}

Program to show a character pointer

using codeblocks
-------------------------------------------------------------------------

//understanding pointer for a character             //comment of program
#include <stdio.h>                     //header file
int main()
{
    char *pointer;                      //pointer declaration of character type
    char x='a';                           //value assignment of character type
    pointer=&x;                        //assigning address to that pointer
    printf("the address of x is=%d\n",pointer);//display of that address
    printf("the  value of x=%c",*pointer);   
//display of value stored in that address. we display that using indirection operator
    return 0;
}

---------------------------------------------------------------------------------------------
using turbo c++
------------------------------------------------------------------------------------------
//understanding pointer for a character             //comment of program
#include <stdio.h>                     //header file
#include<conio.h>
int main()
{
    char *pointer;                      //pointer declaration of character type
    char x='a';                           //value assignment of character type
    pointer=&x;                        //assigning address to that pointer
    printf("the address of x is=%d\n",pointer);//display of that address
    printf("the  value of x=%c",*pointer);   
 //display of value stored in that address. we display that using indirection operator
   getch();
    return 0;
}

Program to show use of pointer.

using codeblocks
----------------------------------------------------------------------------------------

//understanding pointer                //comment of program
#include <stdio.h>                     //header file
int main()
{
    int *pointer;                      //pointer declaration
    int x=4;                           //value assignment
    pointer=&x;                        //assigning address to that pointer
    printf("the address of x is=%d\n",pointer);//display of that address
    printf("the  value of x=%d",*pointer);    //display of value stored in that address. we display that             using indirection operator
    return 0;
}

------------------------------------------------------------------------------------
using tuboc++
--------------------------------------------------------------------------------------
//understanding pointer                //comment of program
#include <stdio.h>                     //header file
#include<conio.h>
int main()
{
    int *pointer;                      //pointer declaration
    int x=4;                           //value assignment
    pointer=&x;                        //assigning address to that pointer
    printf("the address of x is=%d\n",pointer);//display of that address
    printf("the  value of x=%d",*pointer);    
//display of value stored in that address. we display that using indirection operator
   getch();
    return 0;
}

program to show total bytes used by union ,using sizeof().

using codeblocks
-------------------------------------------------------------------------
//sizeof  union with some data
#include <stdio.h>                         //header file
union det                                  //union tag
{
    char name[30];                      //first member
    char address[70];                   //second member
    int roll_no;                        //third member
}acc;                                   //data variable
int main()
{
    printf("total  SIZE=%d",sizeof(acc));//prints total bytes occupied by variable 'acc'.
    return 0;
}

//note: it finds the sum of all members with the largest one and other.
-------------------------------------------------------------------------------------------------------

using turbo c++
----------------------------------------------------------------------------------------------
//sizeof  union with some data
#include <stdio.h>                         //header file
#include<conio.h
union det                                  //union tag
{
    char name[30];                      //first member
    char address[70];                   //second member
    int roll_no;                        //third member
}acc;                                   //data variable
int main()
{
    printf("total  SIZE=%d",sizeof(acc));//prints total bytes occupied by variable acc.
    getch();
    return 0;
}