The following C code results in an error. State whether this statement is true or false.
#include <stdio.h>
void f(double b)
{
printf ("%ld\n",b);
}
int main()
{
inline f(100.56);
return 0;
}
#include <stdio.h>
void f(double b)
{
printf ("%ld\n",b);
}
int main()
{
inline f(100.56);
return 0;
}A. True
B. False
Answer: Option A

Join The Discussion