Friday, 19 June 2015

C programming codes

Hi world program in c

We may store "hi world" in a character cluster as a string steady and afterward print it.

#include <stdio.h>
 
int main()
{
  char string[] = "Hello World";
 
  printf("%s\n", string);
 
  return 0;
}

No comments:

Post a Comment