Tags

, , , , ,

#include<stdio.h>

#include<conio.h>

main( )

{

int a, b,c;

clrscr( );

a=10;

b=20;

c=*(&a)+*(&b);

printf(“%d”,c);

getch( );

}