mycsvilla

We explore our idea through technology

WE DESIGN WEBSITE AND SOFTWARE OF ANY KIND.CLICK CONTACT MENU TO CONTACT US

Thursday, 23 November 2017

introduction to c programming

                                                      C PROGRAMMING

C PROGRAMMING

 C was originally developed by Dennis Ritchie between 1969 and 1973 at Bell Labs, and used to re-implement the Unix operating system. It has since become one of the most widely used programming languages of all time, with C compilers from various vendors available for the majority of existing computer architectures and operating systems. C has been standardized by the American National Standards Institute (ANSI) since 1989 (see ANSI C) and subsequently by the International Organization for Standardization (ISO).C was used to write many program such as window operating system,microsoft office and other.


You can download the PDF version of  C here
  •  
                         DOWNLOAD C COMPILER
  • DESKTOP COMPILER
DEV C++    download from  here 

how to use DEV C++ VIDEO here
 
TURBO C++  download from  here

how to use TURBO C++ here
  • ANDROID COMPILER
C COMPILER  download from  here

.C STRUCTURE

#include<stdio.h>

int main()
{

/* This is  the main body
*/

    return 0;
}



C PROGRAM FOR  "Hello World"

#include<stdio.h>

int main()
{

    printf("Hello World!!!");

    return 0;
}


After compiling with dev c++ or turbo c++ will give the below  result



Hello world!!!


  

No comments:

Post a Comment