This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Exercises/C3/hello_world.c

11 lines
160 B
C
Raw Permalink Normal View History

2022-04-08 15:12:38 +00:00
#include <stdlib.h>
#include <stdio.h>
/* My first program */
int main(void)
{
// This is a single line of comment
2023-10-02 13:35:08 +00:00
printf("Hello World\n");
2022-04-08 15:12:38 +00:00
return 0;
2023-10-02 13:35:08 +00:00
}