What is the use of making static function inline ? Rather than using the same function in two files ; is their any other use of static function?
inline static int func(int a)
{
static int b;
printf("Hello World !\n");
return b;
}