Lesson 1-Introduction To Fundamentals of Programming
Lesson 1-Introduction To Fundamentals of Programming
Introduction to Fundamentals of
Programming
What is C?
Dennis Ritchie created C in 1972 to enable utilities to run on
Unix. C is a systems programming language, which means
that it operates at the most fundamental level of abstraction
possible.
It is a procedural language at the lowest level. Because C
programs are fast, they enable developers to manage
computer hardware manually.
The strength of the C programming language is that it is fast
and can be used to write code for a broad number of
systems. It is a programming language that is frequently
used in operating systems, interpreters, compilers, and
microcontrollers.
Similarities between C and C+
+
What is C++?
Bjarne Stroustrup created C++ in 1979 while working at Bell
Labs. He desired a versatile and efficient expansion of C. C++ is
object-oriented, yet like C, it may be used on a wide variety of
systems.
#include<stdio.h>
int main()
{
printf(“\nMy first C program is here!\n”);
}
The above is a program code to print a
message on the screen „My first C program is
here!‟ It has to be entered into the computer
memory through the keyboard with the help
of an editor program, it has to be compiled
and run so or execute so that the result is
visible to us.
How to perform these steps depends on the
system you are using or what C compiler you
are using.
Use the Online C compiler IDE JDoodle or Online C
compiler
In your browser type Online C compiler IDE Jdoodle
Let us try to code the first example in the Online C
compiler IDE JDoodle
Using Online C compiler
In your browser type Online C Compiler
Let us try to code the first example in the
Online C compiler