So I was thinking that my project would be cleaner if I have separate temp files for function definitions, glabal variables and the main function.
At the end I would merge these files, compile and run the final c file and then delete all of them. Jus...
Hi, currently I have all the functions double in the translated c file and it works fine even if the function doesn't have a return statement.
I read that the return value is undefined for such functions in c so I just wanted to confirm that the retur...
Hi, Thanks for replying I have another question, if comment is inside a function definition does it have to start with a tab character?
My question was more about if I can completely rely on the tab character to mark the end of function definitions.
Hi, I was wondering if some of the syntax checking can be left for the c compiler to handle.
For example, As I understand the requirements, we don't need to check if functions are defined before being called, since the c compiler will check and repor...