aboutsummaryrefslogtreecommitdiffstats
path: root/test/kvx/lib/printf-test.c
blob: 25afd4362ca9629557e44c7164826a3ca4372e80 (plain)
1
2
3
4
5
6
7
8
9
int printf(const char *, ...);

int main(void){
  int a = 42;
  char *str = "Hi there";
  printf("%s, I am %u\n", str, a);

  return 0;
}