Is there a way that we can call user defined function when we are calling arithmetic operator in a C program just like operator overloading in C++. using GNU GCC Compiler? Simply, I have a function add(), and in my C program I have arithmetic Operation
c = a + b;
when I compile the program, it should call my add() function internally for + operator.
and Is there a way we can see what is the code that gcc compiler is calling when it encounters + operator?