( Replaced | 2007. 04. 25., sze – 16:29 )

> cat solution.c 
#include 
#include 

int main()
{
int a;
int b;

a = 5;
b = 12;

b = a + b;
a = b - a;
b = b - a;

(void)printf("A: %d \nB: %d\n", a, b);

return EXIT_SUCCESS;
}

koszonom szepen nem kerem a meghivot, csak erdekes volt a feladat :)

--
The Internet has evolved from smart people in front of dumb terminals to dumb people in front of smart terminals.