Explain more about post and pre increment with examples?

1 answer

Answer

1089975

2026-05-19 20:20

+ Follow

  1. include

    main()

{

int b=5;

int c= (b++) + (++b) + (++b) + (++b);

printf("%d",c);

}

Ans: The answer will be 27.

The answer will be 32

ReportLike(0ShareFavorite

Related Questions

Copyright © 2026 eLLeNow.com All Rights Reserved.