Skip to main content

Accessing a function in C programming

                  A function can be called or accessed by specifying its name, followed by a list of arguments enclosed in parentheses and separated by commas. For example, add(a,b) to call a function to add two numbers. If function call doesn’t require any arguments, any empty pair of parentheses must follow the name of function. The arguments appearing in the function call are referred as actual arguments. In function call, there will be one argument for each formal argument. The value of each argument is transferred into the function and assigned to the corresponding formal argument.
An example
/* to find the greatest number among three numbers.*/
       #include <stdio.h>
       #include<conio.h>
         int greater(int x, int y)    /* function definition*/
              {
                 if(x>y)
                        return (x);
                 else
                    return (y);               
                }

  void main()
               {
                  int a, b,c,d,e;
                  clrscr();
                  printf(“Enter three numbers”);
                  scanf(“%d%d%d”,&a,&b,&c);
                  d=greater(a,b);          /* function call*/
                  e=greater(d,c);          /* same function call again*/
                  printf(“The greatest number is%d”,e);
                  getch();                
                }

Function call by value:
             When actual value of variable is passed to the function as argument, it is known as function call by value. In this call, the value of the actual argument is copied into the function’s formal argument. Therefore, the value of the corresponding formal argument can be altered within the function. But, this will not change the value of the actual argument within the calling function.
Example:
          #include<stdio.h>
          #include<conio.h>
          void swap(int , int);
             void main()
                 {
                     int a, b;
                     a=99; b=89;
                     printf(“Before function calling, a and b are: %d\t%d”,a,b);
                     swap(a,b);
                     printf(“After function calling, a and b are: %d\t%d”,a,b);
                     getch();
                  }
                  
 void swap(int x, int y)
            {
               int temp;
               temp=x;
               x=y;
               y=temp;
               printf(“The values within functions are:%d\t%d”,x,y);
              }
      
Output:
         Before function calling, a and b are: 99            89
         The values within functions are: 89                   99
         After function calling, a and b are: 99               89
The above output shows that the actual argument’s value are not changed even the value of formal arguments are changed.

/* Program to illustrate the function with argument and return values */
int add(int, int) ;
main()
{
int a, b, sum ;
printf (“Enter two numbers : \t”) ;
scanf (“%d%d”, &a, &b) ;
sum = add(a, b) ;
printf (“ln the sum is \t%d|, sum) ;
}
int add(int a, int b)
{
int sum ;
sum = a+b ;
return sum ;
}
Output:
Enter two numbers : 4 3
The sum is 7

Function call by Reference:
                In this type of function call, the address of variable is passed to the function as argument instead of actual value of variable. For clear understanding of this, concept of pointer is necessary which we will study in next chapter.
        Example:
/*a program to swap the two variable’s values*/
          #include<stdio.h>
          #include<conio.h>
          void swap(int * , int *);
             void main()
                 {
                     int a, b;
                     a=99; b=89;
                     printf(“Before swap, a and b are: %d\t%d”,a,b);
                     swap(&a,&b);             /*  function call by reference*/
                     printf(“After swap, a and b are: %d\t%d”,a,b);
                     getch();
                  }
 void swap(int *x, int *y)
            {
               int temp;
               temp=*x;  /*  here *x represent the value at address contained in variable x */
               *x=*y;
               *y=temp;
               }
       Output:
               Before swap, a and b are: 99           89
               After swap, a and b are: 89       99

Comments

Popular posts from this blog

Passing arrays to functions in C programming

Like any other variables, we can also pass entire array to a function. An array name can be named as an argument for the prototype declaration and in function header. When we call the function no need to subscript or square brackets. When we pass array that pass as a call by reference because the array name is address for that array. /* Program to illustrate passing array to function */ #include<stdio.h> void display(int) ; /* function prototype */ main( ) { int num[5] = {100, 20, 40, 15, 33, i ; clrscr( ) ; printf (“\n The content of array is \n”) ; for (i=0; i<5; i++) display (num[i]) ; /*Pass array element fo fun */ getch{ } ; } void display(int n) { printf (“\t%d”, n ) ; } Output:     The content of array is 100      20       40       15 3 /* Program to read 10 numbers from keyboard to store these num into array and then c...

CPU (Central Processing Unit)

PGA reffered as pin grid array in which pins of CPU are lined up in a straight format. SPGA referred as staggered pin grid array. in which pins of CPU are arranged staggered format. LGA reffered to as Land Grid Array in which pins are available within inside the socket but not in the CPU in other words in line grid array, in CPU ther are no pinsbut insteadpins areattached with in a socket which contact with with the CPU. for e.g. LGA775 socket(no pins on cpu) has better cooling system. better contact and better locking(climbing). LGA1155: Letest generation I socket, also reffered as sandy bridge, Turbo boost overclocking. More resent than LGA 1156 socket. LGA1156: ability to north bridge Doul channel DDR3 optional integreted graphics PCI express LGA1366: hi end core i series socket integreted tiple channal memmory controller external control bridge(HUB) Upgrading CPU: need to check its core suppert check multiprocessor supports or not check on the ...

Recursive Function in C programming

             If a statement within the body of a function calls the same function, the function is called recursive function. Actually, recursion is a process by which a function calls itself repeatedly until some specified condition has been satisfied. This process is used for repetitive computations in which each action is stated in term of previous result. Many iterative or repetitive problems can be written in this form.                To solve a problem using recursive method, two conditions must be satisfied. They are: 1)       Problem could be written or defined in term of its previous result. 2)       Problem statement must include a stopping condition. /*   An example of recursive function to calculate factorial of a number.*/    #include<stdio.h>    #include<conio.h...