[ create a new paste ] login | about

Link: http://codepad.org/CHjvyK2s    [ raw code | output | fork ]

C, pasted on Nov 9:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include<stdio.h>
#define A(x) printf("%d\n",x)
#define AS(A) A(20)
typedef struct{
 int *m;
 int n;
 int k;
}st;
//static st sb[10] = {AS(A)}
int main()
{
    AS(A);
    return 0;
}


Output:
1
20


Create a new paste based on this one


Comments: