A more interesting question would be: "How can I develop C code fast?"
Answer: Modify something, Compile, Test. Works? then continue: Modify something, Compile, Test. Works? then continue: Modify something, Compile, Test.
The issue with C is that it gives useless errors. If you modify too much, then it becomes impossible to find that typo you just created in your code. I actually use the CTRL-Z a lot to find the cause. Reading the error lines takes too long and most likely will confuse you.
1 comment
0 u/roznak 23 May 2017 21:25
Press the compile button and pray!
A more interesting question would be: "How can I develop C code fast?" Answer: Modify something, Compile, Test. Works? then continue: Modify something, Compile, Test. Works? then continue: Modify something, Compile, Test.
The issue with C is that it gives useless errors. If you modify too much, then it becomes impossible to find that typo you just created in your code. I actually use the CTRL-Z a lot to find the cause. Reading the error lines takes too long and most likely will confuse you.