Saturday, 13 February 2016

Begnning with C/C++

Simple c program

 Here is a simple program in C language. This programs display "My first program"
 on the screen.

 
  #include <stdio.h>                     // use to include header file
 
int main()                             // main function
{                                     //stating brace
  printf("My first program");         
  return 0;         //   returns 0 on the screen at the end of program
  
 

No comments:

Post a Comment