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