CS 220 Parallel Computing

hello.c

DownloadView Raw

/**
 * hello.c
 *
 * Known as "the first C program," from K&R. Greets the world.
 */

#include <stdio.h>

int main(void)
{
    printf("Hello, World!\n");

    return 0;
}