#include <stdio.h>
// Define a public function
double foo(int count)
{
double sum = 0.0;
// Sum all the values bar(1) to bar(count)
for (int i = 1; i <= count; i++)
sum += bar((double) i);
return sum;
}
// Symbol Table:
// Symbol name|Type|Scope
// bar|function, double|extern
// x|double|function parameter
// foo|function, double|global
// count|int|function parameter
// sum|double|block local
// i|int|for-loop statement
#include <stdio.h>
Languages with Explicit Standard Library include C, C++, Objective-C
View all concepts with or missing a hasExplicitStandardLibrary measurement
Read more about Explicit Standard Library on the web: 1.