Saturday 5 October 2013

Print a String using C

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

No comments:

Post a Comment