C Language - All you need to know

1. Introduction to C

C is a general-purpose high level language that was originally developed by Dennis Ritchie for the UNIX Operating system.

Read more

2. Variables & Datatypes

Each variable in C has an associated data type. Each data type requires different amounts of memory...

Read more

3. Operators

An operator is a symbol that tells the compiler to perform specific mathematical or logical functions.

Read more

4. Conditionals

Conditional Statements in C programming are used to make decisions based on the conditions.

Read more

5. Loops

Looping Statements in C execute the sequence of statements many times until the stated condition becomes false.

Read more

6. Arrays

An array is defined as the collection of similar type of data items stored at contiguous memory locations.

Read more

7. Strings

Strings are actually one-dimensional array of characters terminated by a special null character '\0'.

Read more

8. Intro to Pointers

Pointers (pointer variables) are special variables that are used to store addresses rather than values.

Read more