Login

Welcome, Guest. Please login or register.

March 29, 2024, 11:45:16 am

Author Topic: helloworld  (Read 3134 times)

0 Members and 1 Guest are viewing this topic.

RuiAce

  • ATAR Notes Lecturer
  • Honorary Moderator
  • Great Wonder of ATAR Notes
  • *******
  • Posts: 8814
  • "All models are wrong, but some are useful."
  • Respect: +2575
helloworld
« on: December 15, 2020, 12:54:18 pm »
+5
Code: (helloworld.c) [Select]
#include <stdio.h>
int main(void) {
    printf("Hello world!\n");
    return 0;
}