mirror of
https://github.com/supleed2/EIE4-FYP.git
synced 2024-11-10 04:15:49 +00:00
6 lines
92 B
C
6 lines
92 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void helloc(void);
|
||
|
void helloc(void) {
|
||
|
printf("C: Hello, world!\n");
|
||
|
}
|