I know that when a class has multiple functions with the same name and different parameter list it is called function overloading.
But in case of printf()
function, whenever we want to print values of different data types by using format specifiers like this as given below
printf("%c%d%f",a,b,c);
can we say it is function overloading?