First Programming with C

April 08, 2017
Programming Language C


C is a programming language. It is very close to the machine language. When we write any programme with C language, we fell (Understand) how a machine work. So, we start our programming language with C.

Every Programm in C language contain at list one library function and main function. First, we include the library function then we declare the main function. Another user defined function may be stay. But all the user defined function is connected to the main function. 

Naw we write a simple C programm

#linclude <stdio.h>

int main()
{
   printf("Welcome to C language world.\n");
   printf("Best wishes from http://r-softit.blogspot.com");

   return 0;
}

Output:

Welcome to C language world.
Best wishes from http://r-softit.blogspot.com

No comments:

Powered by Blogger.