Monday, October 22, 2018

What is C ?

1 comments

  What is C ?  

You know that, C-Programming Language is a medium of communication but unfortunately computer adds not enough to understand natural language.
So we must communicate the computer using a special language. So we can say that programming language is a communication between human being and computer. it is a set of instructions and command to create a software program.


here is a simple HelloWord  program .

#include <stdio.h>
#include <conio.h>
int main()
{
printf("HelloWorld");
getch();
}

1 comment: