Hi All,


I have an small doubt in using Increment / Decrement operators....

Program is :
Code:
1)   #include<stdio.h>
2)   main()
3)  {
4)     int i=10;
5)     printf("\nValue of I is :%d",++(--i));
6)     getch();
7)  }
Compilation Error:
at line 5, Error prompting stating "L value required".

Is the syntax wrong or the usage of the Increment / Decrement operators is worng....

Best Regards,
Shyamlal SVS.