Posts

Showing posts with the label Characteristics & Importance of C.
  Characteristics & Importance of C: §   It is a robust language whose rich set of built-in functions and operators can be used to write any complex program. §   The C compiler combines the capabilities of an assembly language with features of high-level language and therefore it is well suited for writing both system software and business packages. §   Programs written in C are efficient and fast. This is due to its variety of data types and powerful operators. There are only 32 keywords and its strength lies in its built-in functions. Several standard functions are available which can be used for developing programs. §   C is highly portable. This means that C programs written for one computer can be run on another with little or no modification. §   C Language is well suited for structured programming, thus requiring the used to think of a problem in terms of function modules or blocks. A proper collection of these modules would make a comp...