cstart/Lectures/Lecture1/Codes/hello-world.c

10 lines
173 B
C

#include <stdio.h>
int main(void) {
/* This is a long comment */
const int year = 2024;
// This is a short comment
printf("hello world %d!\n", year);
return 0;
}