7. WAP to know address allocated

 

#include<stdio.h>

void main()

{

        short int i,j;

        printf("&i = %p \n &j = %p\n",&i,&j);

}

Comments