Daily Archives: February 16, 2017


CLASSES OF ALGORITHM

ALGORITHM An algorithm is any special method of solving a certain kind of problem or an idea behind the computer programs. More specifically , Algorithm refers to a precise method useable by a computer for the solution of a particular computational problem. CLASSES OF ALGORITHM  Algorithms can be classified depending […]


CONCEPT OF POINTERS IN C PROGRAMMING

INTRODUCTION TO POINTERS Pointers are extremely flexible and powerful tool for programming over a wide range of applications. The use of pointers offers a great degree of flexibility for manipulating data in programs and quicker and memory efficient. Most of the learners feel that understanding pointer is a very daunting […]


WHAT IS INTERPRETER IN PROGRAMMING?

INTERPRETERS An interpreter is another type of program translator used for higher level languages into machine level language. It takes one statement of higher level language and translate it into machine language which is immediately execute it. Translation and execution are carried out for each statement. It differs from compiler, […]


WHAT IS COMPILER IN PROGRAMMING?

COMPILERS A compiler is a translating program that translates the instruction of a high level language into machine level language. A compiler is so called because it compiles a set of machine language instruction for every program instruction of a high level language. A program is written by a programmer […]