Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 2.04 KB

README.md

File metadata and controls

50 lines (38 loc) · 2.04 KB
  ______         __    __              __                         
 /      \       /  \  /  |            /  |                        
/$$$$$$  |      $$  \ $$ |  ______   _$$ |_     ______    _______ 
$$ |  $$/       $$$  \$$ | /      \ / $$   |   /      \  /       |
$$ |            $$$$  $$ |/$$$$$$  |$$$$$$/   /$$$$$$  |/$$$$$$$/ 
$$ |   __       $$ $$ $$ |$$ |  $$ |  $$ | __ $$    $$ |$$      \ 
$$ \__/  |      $$ |$$$$ |$$ \__$$ |  $$ |/  |$$$$$$$$/  $$$$$$  |
$$    $$/       $$ | $$$ |$$    $$/   $$  $$/ $$       |/     $$/ 
 $$$$$$/        $$/   $$/  $$$$$$/     $$$$/   $$$$$$$/ $$$$$$$/  

What is C?

C is a general-purpose programming language that was created by Dennis Ritchie at Bell Laboratories in 1972. Despite being an old language, C remains very popular today. This is because it is considered a fundamental language in the field of computer science.

C is closely associated with UNIX, as it was developed specifically for writing the UNIX operating system.

Why Learn C?

It is one of the most popular programming languages in the world If you know C, you will have no problem learning other popular programming languages such as Java, Python, C++, C#, etc, as the syntax is similar C is very fast, compared to other programming languages, like Java and Python C is very versatile; it can be used in both applications and technologies

Difference between C and C++

  • C++ was developed as an extension of C, and both languages have almost the same syntax
  • The main difference between C and C++ is that C++ supports classes and objects, while C does not

Content Table

  • Unit-01: Hello World!
  • Unit-02: Comments
  • Unit-03: Variables
  • Unit-04: Operators
  • Unit-05: Boolean
  • Unit-06: Condition
  • Unit-07: Loops
  • Unit-08: Break and Continue
  • Unit-09: Array
  • Unit-10: String
  • Unit-11: User Input
  • Unit-12: Pointer
  • Unit-13: Functions
  • Unit-14: Structure
  • Unit-15: Enums

Exercise

  • Basic Calculator : Simple calculator written in c.