This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

What is foo

Hi,
some of you guys use "foo" as a name for a plain variable or a function. What is the meaning of "foo"?

Parents
  • if one wished one's illustrative examples to be particularly verbose (or should I say pompous?), one might write:

    void canonical_metasyntactic_function( void )
    {
       int canonical_metasyntactic_variable;
    
       :
       // do stuff
       :
    }
    

    rather than

    void foo( void )
    {
       int bar;
    
       :
       // do stuff
       :
    }
    

Reply
  • if one wished one's illustrative examples to be particularly verbose (or should I say pompous?), one might write:

    void canonical_metasyntactic_function( void )
    {
       int canonical_metasyntactic_variable;
    
       :
       // do stuff
       :
    }
    

    rather than

    void foo( void )
    {
       int bar;
    
       :
       // do stuff
       :
    }
    

Children