Suppose that this C program is running on a SPARC structure. I think that normal function's name is allocated in .text, but static one is allocated in BSS? Is that correct? For example, this is a C static function
static void fubar( int b )
{
static int c = 7;
void (*d) (int) = fubar;
}
Where is this fubar
stored?