Horje
What's the difference between "call" and "invoke"? Code Example
What's the difference between "call" and "invoke"?

Function calling is when you call a function yourself in a program. While function invoking is when it gets called automatically.
For example, consider this program:

struct s
{
  int a,b,s;

  s()
  {
    a=2;
    b=3;
  }

  void sum()
  {
    s=a+b;
  }
};

void main()
{
  struct s obj; //line 1
  obj.sum(); // line 2
}

Here, when line 1 is executed, the function (constructor, i.e. s) is invoked. When line 2 is executed, the function sum is called.

source: web




C

Related
uri/beecrowd problem no - 1133 solution in C Code Example uri/beecrowd problem no - 1133 solution in C Code Example
reset the reading position to beginning in c Code Example reset the reading position to beginning in c Code Example
l/O Multiple Values Code Example l/O Multiple Values Code Example
2021 Code Example 2021 Code Example
1000000000 Code Example 1000000000 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7