[ create a new paste ] login | about

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

C, pasted on Aug 25:
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

#define AAA "12345"
#define ABC (AAA + 2)

int main(int argc, char **argv)
{
  printf("%s\n", AAA);
  printf("%s\n", ABC);
  return 0;
}


Output:
1
2
12345
345


Create a new paste based on this one


Comments: