#include void func(char *s, int i); int main(){ func("xx : ", 20); } void func(char *s, int i){ printf("%s%d\n", s, i); }