7 lines
91 B
C
7 lines
91 B
C
extern void greet(const char *name);
|
|
|
|
int main(void) {
|
|
greet("stars");
|
|
return 0;
|
|
}
|