Tricky with increment

 #include<stdio.h>


int main(){

    int a =3;

    printf("%d %d %d", a, ++a, a++);

    return 0;

}

Comments

Popular posts from this blog

Snake game.c

Type declaration

Array with function