0
can anyone answer this with correct explanation int i=0; printf("%d%d%d%d",--i, ++i, i--, i++);
12 Respuestas
+ 1
answer is 0010
+ 1
void main()
{
int a,b,c,d,
a=15;
b=a - -; /*b=15 a=14 */
c= - - a ;. /*a=13 c=13 */
d= a + + ; /*d=13 a=14 */
e = + + a ; /* a=15 e=15 */
printf("\n ℅d ℅d ℅d ℅d",b,c,d,e);
getch();
}
0
no
0
can anyone explain pls
0
X u have taken as variable then Wr does I comes
0
look at it carefully
0
but everytime i got the same answer..
0
Post-increment returns a copy of the original value. Pre-increment returns a copy of the original value plus 1
- 1
-1,+1,0,0