about mean in gcc

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • krishnasanthosh
    New Member
    • Apr 2012
    • 1

    about mean in gcc

    Hi guys..!! good to meet you guys in this portal..!!


    well I'm working with C language in Linux.. when I compile the math program I see an error message that undeclared Mean and I mention the mean as an user defined function. total procedure is correct..

    thanks you...!!
  • johny10151981
    Top Contributor
    • Jan 2010
    • 1059

    #2
    here is an example of working app example:

    Code:
    int test(int a, int b);
    int main()
    {
     printf("%d",test(1,2));
     return 0;
    }
    int test(int a, int b)
    {
     return a+b;
    }

    Comment

    Working...