#include "stdafx.h"
void add(int,int)
{
printf("Checkin g \n" );
}
int _tmain(int argc, _TCHAR* argv[])
{
int a=5,b=6;
add(a,b);
return 0;
}
I was just trying this and I was surprised to see that it compiled with no errors. Someone explained to me that the compiler takes the...