Sunday, 21 June 2015

First Program " hello world !" in C

  #include <stdio.h>
  int main();
  {
      printf("hello world !");
      return 0;
  }
  

No comments:

Post a Comment