#include<stdio.h>
void print(char *s) {
puts(s);
}
void hello(void (*p)(char*), char *s) {
p(s);
}
int main(void) {
print("hello");
hello(print, "hello");
return 0;
}
#include<stdio.h>
void print(char *s) {
puts(s);
}
void hello(void (*p)(char*), char *s) {
p(s);
}
int main(void) {
print("hello");
hello(print, "hello");
return 0;
}