[ create a new paste ] login | about

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

C, pasted on Nov 23:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
int x(char a, double b)
{
    return printf("%c %f\n", a, b);
}

#define x 

int main(void)
{
    x('P', 3.14);

    return 0;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: