consider this code
Code:
int add(int x, int y);

int main()
{
	add(5, 7);

	return 0;
}
what happens to the value of add function in main() ??
is it lost because we did not assign it to another variabl??