Tuesday, 23 April 2019

What is difference between compiler and interpreter?


Or, Difference between compiler and interpreter
Or, Understanding the differences between compiler and interpreter
Or, Definition of compiler and interpreter

Compiler: Compiler is a program that translates or converts the codes written in high-level programming language into low-level machine language. It takes the entire program a time and executes the program faster than interpreters.

It is used largely for C, C++, and Scala etc…

Interpreter: The interpreter is an alternative and does the same works as compilers.  It takes single line code or instruction at a time and execute the program little slower compared to compilers.

It is used largely in Python, Php, and Perl etc…


Cheers, Please write me back if you have any query or feedback on this.

Friday, 1 February 2019

How to remove CR LF from codeblocks new project?

Or, Removing CR LF in codeblocks

Descriptions: As a beginner when you start using codeblocks for C or C++ languages, you may face this situation which may discomfort you. It was annoying to me as well… J

Don’t worry, it’s not an error or a problem, it’s just a setting of codeblocks which need to be set to get rid of this visual.















Steps: How to remove CR LF in codeblocks

Open codeblocks > Go to Settings > Click on Editor…













Uncheck the option ‘Show end-of-line chars’ under End-of-line options section as highlighted below









Cheers, please write me back if you have any query or feedback on this.