资 源 简 介
Most of us are prone to using printf statements while debugging large projects. In certain instances when too many variables are manipulated in a section of code, it becomes impossible to keep track of the values by hand, in which case we, no matter what resort to such techniques. But the problem is we cannot collate data together. When we print the values of variables we will have to move back and forth to see if they were actually manipulated the way they should have been. Print Buffer enables you to collate manipulation of the values of variables together and view them all at once.
If the code were looping through a section of code:
for(...){
i = expression 1;
j = expression 2;
k = expression 3;
}
when you write traditional printf statements, i,j,k are printed one after the other for each execution of the loop. Print Buffer allows you to collate all manipulations of i, j, k in separate buffers and then view them a