-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab5-1.c
19 lines (18 loc) · 844 Bytes
/
lab5-1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>
void main(void)
{
int m=10,n,o;
int *z=&m ;
printf("\n\n Pointer : Show the basic declaration of pointer :\n");
printf("-------------------------------------------------------\n");
printf(" Here is m=10, n and o are two integer variable and *z is an integer");
printf("\n\n z stores the address of m = %p\n", z); // z is a pointer so %p would print the address
printf("\n *z stores the value of m = %i\n", *z);
printf("\n &m is the address of m = %p\n", &m); // &m gives the address of the integer variable m
// so %p is the specifier for that address
printf("\n &n stores the address of n = %p\n", &n);
printf("\n &o stores the address of o = %p\n", &o);
printf("\n &z stores the address of z = %p\n\n", &z); // &z gives th address, where the pointer z is
// stored -> still an address -> %p is the right
// specifier
}