Aug 26 2009

Hello World

Category: C Programmingadmin @ 7:25 pm

C is one of the most popular programming languages. It is widely used on many different software platforms, and there are few computer architectures for which a C compiler does not exist. C has greatly influenced many other popular programming languages, most notably C++, which originally began as an extension to C

/* Program 1.0 My Very First C Program - Displaying Hello World */
#include<stdio.h>
main()
{
      printf("Hello World!\n");
}

Tags: , ,


« Previous Page