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/C4/well_laid_out_code.c

8 lines
98 B
C
Raw Normal View History

2022-04-08 15:12:38 +00:00
#include <stdio.h>
/* My first program */
int main(void)
{
printf("Hello World");
return 0;
}