C C++ JAVA
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
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment