#include <stdio.h> int pr(char s) { printf("%c",s); return 0; } int main(void) { pr('*'); return 0; }