6 lines
84 B
C
6 lines
84 B
C
void print_hello(char *s);
|
|
int main()
|
|
{
|
|
print_hello("Android");
|
|
return 0;
|
|
}
|