/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
void test(){
printf("No one called me!\n");
}
int main()
{
#define T(x) t##x
#define t_e_s_t t\
est
T(est)();
t_e_s_t();
}