Actually the keyword inline is just a type modificator as you can use:



#include <stdio.h>
inline int sum(int a,int b)
{
return a+b;
}
void main()