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




 
No comments:
Post a Comment