C is considered to be the most robust programming language. It is the mother of all modern programming languages. It still has it roots fixed deep even after 45 years of existence. C is one of the fastest programming languages and because of its relationship with the lower level of the computer architecture, it can process data nearly as fast as the hardware components itself. Learning C language is a major step in learning computer programming as a whole. Though C is a relatively small language, its rather important to understand the basic technicalities of the language. In order to dip your toes in the water, let's start with the trivial "HELLO WORLD" program.
Test Code : ( Use this code to display Hello World! in the console )
NOTE: Don't worry about anything else you see on the screen just focus on the code and rest will be discussed later in the tutorials. Save the file as "Hello.c". The .c extension defines that its a C file and you'll be good to go.
Watch the video below for more.
Test Code : ( Use this code to display Hello World! in the console )
#include<stdio.h>
int main(int argc, char const *argv[])
{
printf("%s\n", "Hello, World!");
return 0;
}
NOTE: Don't worry about anything else you see on the screen just focus on the code and rest will be discussed later in the tutorials. Save the file as "Hello.c". The .c extension defines that its a C file and you'll be good to go.
Watch the video below for more.
Comments
Post a Comment