Introduction to C Language


What is C?

C is a general-purpose programming language that is extremely popular, simple, and flexible to use. It is a structured programming language that is machine-independent and extensively used to write various applications, Operating Systems like Windows, and many other complex programs like Oracle database, Git, Python interpreter, and more. It is said that ‘C’ is a god’s programming language. One can say, C is a base for the programming. If you know ‘C,’ you can easily grasp the knowledge of the other programming languages that uses the concept of ‘C’

Why Use C?

Languages such as C++/Java are developed from ‘C’. These languages are widely used in various technologies. Thus, ‘C’ forms a base for many other languages that are currently in use.

C Syntax

‘C’ is a structured programming language in which program is divided into various modules. Each module can be written separately and together it forms a single ‘C’ program. This structure makes it easy for testing, maintaining and debugging processes.

Examples in Each Chapter

To get started with SQL, you need a database management system (DBMS) that supports SQL. Popular options include MySQL, PostgreSQL, and Microsoft SQL Server. Once you have a DBMS, you can begin writing SQL queries to interact with your data.


   main()
   {
    printf("Hello World");
    getch();
   }