Passing Tips to Features in C

[ad_1]

View Dialogue

Enhance Article

Save Article

Like Article

View Dialogue

Enhance Article

Save Article

Like Article

Conditions: 

Passing the tips to the perform means the reminiscence location of the variables is handed to the parameters within the perform, after which the operations are carried out. The perform definition accepts these addresses utilizing pointers, addresses are saved utilizing pointers.

Arguments Passing with out pointer 

After we go arguments with out pointers the adjustments made by the perform could be carried out to the native variables of the perform.

Beneath is the C program to go arguments to perform and not using a pointer:

C

#embrace <stdio.h>

  

void swap(int a, int b)

{

  int temp = a;

  a = b;

  b = temp;

}

  

int major() 

{

  int a = 10, b = 20;

  swap(a, b);

  printf("Values after swap perform are: %d, %d",

          a, b);

  return 0;

}

Output

Values after swap perform are: 10, 20

Arguments Passing with pointers 

A pointer to a perform is handed on this instance. As an argument, a pointer is handed as a substitute of a variable and its handle is handed as a substitute of its worth. In consequence, any change made by the perform utilizing the pointer is completely saved on the handle of the handed variable. In C, that is known as name by reference.

Beneath is the C program to go arguments to perform with pointers:

C

#embrace <stdio.h>

  

void swap(int* a, int* b)

{

  int temp;

  temp = *a;

  *a = *b;

  *b = temp;

}

  

int major()

{

  int a = 10, b = 20;

  printf("Values earlier than swap perform are: %d, %dn"

          a, b);

  swap(&a, &b);

  printf("Values after swap perform are: %d, %d"

          a, b);

  return 0;

}

Output

Values earlier than swap perform are: 10, 20
Values after swap perform are: 20, 10

[ad_2]

Leave a Reply

Your email address will not be published. Required fields are marked *