-->
Showing posts with label Program to show use of pointer.. Show all posts
Showing posts with label Program to show use of pointer.. Show all posts

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;
}