Yes, for me also it's coming out 99 If I do it orally but on compiling it's
coming 100.
http://codepad.org/KKLEXY45


On Wed, Jun 22, 2011 at 7:39 PM, Piyush Sinha <[email protected]>wrote:

> r u sure the last output is also 100..for me its coming 99
>
> On 6/22/11, udit sharma <[email protected]> wrote:
> > #include<stdio.h>
> > int main()
> > {
> > void print(int *,int *,int *,int *,int *);
> > static int arr[]={97,98,99,100,101,102,103,104};
> > int *ptr=arr+1;
> > print(++ptr,ptr--,ptr,ptr++,++ptr);
> > return 0;
> > }
> > void print(int *a,int *b,int *c,int *d,int *e)
> > {
> > printf("%d\t%d\t%d\t%d\t%d\n",*a,*b,*c,*d,*e);
> > }
> >
> > Why the output is:
> > 100    100    100    99    100
> >
> >
> > --
> > Regards
> >  UDIT
> >  DU- MCA
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Algorithm Geeks" group.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to
> > [email protected].
> > For more options, visit this group at
> > http://groups.google.com/group/algogeeks?hl=en.
> >
> >
>
>
> --
> *Piyush Sinha*
> *IIIT, Allahabad*
> *+91-8792136657*
> *+91-7483122727*
> *https://www.facebook.com/profile.php?id=100000655377926 *
>
> --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to