Skip to main content

The Introduction to 'C' Programing

Lets Code In 'C' Language With Antas Jain


Welcome to a freshly made Page for all the aspirants who wants to get started with the 'C' Language.

Here are some Amazing facts about the "C" Language:

"1. 'C' Language is said to be the first benchmark of a good programmer.  

2. The 'C' language was developed by Sir Dennis Ritchie at  AT&T Bell Laboratories, America.

3. 'C' was the first considered High Level Language that World was introduced to.

4. 'C' is said to be the main Inspiration for the new Programming Languages With OOP concept, various languages uses the concepts similar or inspired of C Language.
 
5. C is currently in top 3 highest paying languages globally.

6 . Most of the popular Linux Kernel and most UNIX utilities, what you would call the operating system are written in C. "

C promises to be the core or the base of the programming languages.

Do Consider the fact that the basics which are taught in 'C' are similar for most of the programming languages.

Comments

Popular posts from this blog

Iteration and Iterative statements.

ITERATION IN C According to Google: Iteration is the repetition of a process or utterance. In a programming language Iteration stands for a repeating execution of a set of codes until desired condition is obtained. Iteration is done through Iterative Statements. Iteration is also called Looping, which means doing a work again and again. For better understanding of a loop, here is a Real world filmy example: Remember the climax scene from Dr. Strange (2016) where Dr. Strange goes into space to bargain for Earth’s protection from Dormammu, in order to do so he starts an endless time loop which he won’t stop until dormammu accepts his demands and when Dormammu did so the loop stopped. Iteration works in same way, considering his approach as loop’s condition. There are three Iterative statements which makes Iteration possible: For statements (loops).   While statements (loops).   Do-while statements (loops). FOR LOOP AND WHILE LOOP: T...