PASSING VALUES B/W FUNCTION

In actual world the function pass the arguments and that function returns some values .

In short we want to communicate b/w calling and called function.

The machanegium use to convey information to the function is called argument.

#include<stdio.h>

int sum(int a, int b)

{

  return a+b;

}

void main()

{

  int c=Sum(4,6);

  printf(“%d”, c);

}