PoiNtEr->: c program

                             Difference between a dream and an aim. A dream requires soundless sleep, whereas an aim requires sleepless efforts.

Search This Blog

Wednesday, June 29, 2011

c program


#include<stdio.h>
main()
{
int a[7]={1,2,3,4};
printf("%d\n%d\n%d\n%d\n%d\n",(*a),*(&*a),a[*a*0],*a,*(a+1));
}

 

 

output:

1

1

1

1

2

No comments:

Post a Comment