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