ATAR Notes: Forum

General Discussion => Coding Corner => Topic started by: RuiAce on December 15, 2020, 12:54:18 pm

Title: helloworld
Post by: RuiAce on December 15, 2020, 12:54:18 pm
Code: (helloworld.c) [Select]
#include <stdio.h>
int main(void) {
    printf("Hello world!\n");
    return 0;
}