What is the difference b/n pre-increment and functional argument is pre-increment

Posted by thulasi on Stack Overflow See other posts from Stack Overflow or by thulasi
Published on 2010-06-07T13:04:40Z Indexed on 2010/06/07 13:12 UTC
Read the original article Hit count: 271

Filed under:
main()
{
    int a=1;
    void xyz(int,int);
    xyz(++a,a++);
    printf("%d",a);
}
void xyz(int x,int y)
{
    printf("\n%d %d",x,y);
}

© Stack Overflow or respective owner

Related posts about c