What is the importance of post increment and pre increment in C++? 253 viewsJanuary 1, 2024 Question100.55K October 26, 2022 0 Comments What is the importance of post increment and pre increment in C++? In: 7 7 Answers ActiveNewestOldest Anonymous Posted October 26, 2022 0 Comments It really only matter when doing function calls So ‘ function(c++) ‘ Will get the value of c before it is incremented And ‘ function(++c) ‘ Will get the value of c after it is incremented You are viewing 1 out of 7 answers, click here to view all answers. Register or Login
Latest Answers