C Programming, How to write "Hello World"

How to write "Hello World"

#include <stdio.h>
#include <stdlib.h>

int main()
{
    printf("Hello world!\n");
    return 0;
}



C Programming, How to write "Hello World" C Programming, How to write "Hello World" Reviewed by John on September 10, 2017 Rating: 5

No comments