Friday, October 29, 2010

Circular Reference

Circular Reference is a condition where one function in a computer program depends on a result from another

Example:

#include <stdio.h>

int age(x)
{
          age=x+2
          return age;
}

int main()
{
          print(age(2));
          return(0);
}

No comments:

Post a Comment