Untitled

 avatar
unknown
plain_text
a year ago
169 B
14
Indexable
#include <stdio.h>

#define num 1+1
#define numb 3
#define lett n

int func_##lett()
{
  printf("%s\n", __func__);
  return 0;
}

int main()
{
  func_n();

  return 0;
}
Editor is loading...
Leave a Comment