Posts

Showing posts from April, 2021

Compiler VS Interpreter

Image
C++ with Vatsal This series will introduce you to the basics of C++ with some moderate and possibly advanced concepts with some interesting relatable examples to make it more interacting and fun. Let's Begin!!  Compiler VS Interpreter --> INTRODUCTION  What is Compiler?? A compiler is a computer program which helps you transform source code written in a high-level language into low-level machine language. What is Interpreter?? An interpreter is a computer program that executes each of a set of high-level instructions before going to the next instruction. Languages Supporting: COMPILER:-     C, C++, Erlang, Haskell, Rust, and Go INTERPRETER:-  PHP, Ruby, Python, and JavaScript             Difference between Source code & Machine code:-                                      ...