Quick actions

cmd+k|ctrl+k

Navigation

Languages

1-01 - helloworld.c: Hello World

Snippet info

Language

C

Visibility

public

Author

kurt.westphal

Created

2020-12-16T23:32:19Z

Updated

2020-12-17T00:52:20Z

/* Exercise 1-1: Hello World
 *
 * "Run the "hello, world" program on your system. Experiment with leaving out
 *  parts of the program, to see what error messages you get."
 */

// Includes

#include <stdio.h>

/* Main */

int main(void) {

    printf("Hello, World!\n");

    return 0;
}
INFO