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