Monday 23 February 2015

Pointer Arithmetic in C


#include<stdio.h>
#include<conio.h>
main()
{
int a=100,*p;
clrscr();
p=&a;
printf("\n Pointer Arithmetic Result is :%d",(++*p));
getch();
}

No comments:

Post a Comment