Define

#include<stdio.h>
#define a 15
int main()
{
    printf("%d\n", a);

    return 0;
}

Comments