#include<stdio.h>

int main()
{
    int    i=0,j=0;
    i = ++j;
    printf("i will be manipulated using pre operator %d\n", i);
    i= j++;
    printf("j will be manipulated using post operator %d\n", i);
    return 0;
}

