C Introduction


C language tutorial helps you to understand the C language for beginners, as well as professionals.

 

C language tutorial explained with simple programs.

 

Each topic explained with a simple diagram for better understanding.


c-introduction

What is C?

C is a programming language for creating system applications.

  • C is basic for all other programming languages.
  • C is a Structured programming language.
  • C is fast, portable and available on all platforms.
  • C is a middle-level computer language. It is not an Object Oriented Programming language.
  • C is a procedural language.
  • C is known as Mother language.
  • C is System programming language

c basics


Simple C Program

#include <stdio.h> 
void main() {
	printf("Hello World!");
}



OnlineTpoint is a website that is meant to offer basic knowledge, practice and learning materials. Though all the examples have been tested and verified, we cannot ensure the correctness or completeness of all the information on our website. All contents published on this website are subject to copyright and are owned by OnlineTpoint. By using this website, you agree that you have read and understood our Terms of Use, Cookie Policy and Privacy Policy.