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/LC4/hello_world.c

10 lines
166 B
C
Raw Normal View History

2022-04-07 15:58:01 +00:00
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
/* My first program in C */
printf ("Hello World \n");
return 0; // Return from prog
}