Hi,
I created a C program which basically calculates bunch of variable values.... Although the desired output for the final version program is just a few lines, however, for debugging purpose, I've printed the variable values everytime a change is being made in-code. As a result, the output consist of hundred of lines....
Now, even though the program compiles fine and the final output is correct and as desired, however, the entire thing(variable values after changes + final output) is not being printed. What I mean is that, I see the final output and only a few lines of the variable change values before the final output but not the entire list...
I want to see the output of the entire printf command, right from the beginning till the end of the program. How do I do it?
By the way, I'm using dev c++...
Regards,