C is the one of the most popular language of all the time. C is influenced by B, BCPL, CPL, ALGOL, Assembly, FORTRAN, PL/I and it has influenced many languages like C++, C--, C#, Objective C, BitC, D, Java, JavaScript, PHP, Perl, Pike , LPC and Python etc.
Look at the program below and try to understand it.
/* Name: hello world
Author: Parveen Malik,,
Date: 02/01/11 15:11 // comment section
*/
#include<stdio.h> // header section
#include<conio.h>
void main() //program starts from here
{
printf("hello world"); // Prints the "hello world" on console screen
getch();
} //exit
No comments:
Post a Comment