C Programming/Functions

From Wikiversity
Jump to navigation Jump to search

Objective[edit | edit source]

  • Familiarise yourself with functions
    • How to define them
    • How to invoke them
    • Prototyping

Lesson[edit | edit source]

Functions[edit | edit source]

In today's world we believe that Time is Money. The less time you spend in writing a program, the more efficient use of resources. Functions helps a programmer avoid rewritting code over and over, even more so than looping, and hence save time, cost, and effort.

Let's say we would like to write a program that calculates the square of a number. The application that we are asked to design requires that you calculate the square of several numbers again and again. So, you will write the following code to calculate the square of the number wherever needed.

int result;
result = a * a;

If you have to calculate the square of the number at 3 different places in your program, you will have to write these lines of code over and over again.

int main(void)
{
     ... 
     result = a * a; 
     ... 
     result = b * b;
     ... 
     result = c * c;
     ... 
     return 0;
}

Luckily, we do not need to do this, because C allows us to declare functions. A function is named a block of code that, when invoked, is executed. This is what a function definition looks like:

returntype name(parameters ...)
{
     statements ...
}

A C function may specify any primitive type or a struct (a special C type that will be explored further in a later lesson) as its return type, or void if the function does not return anything. Functions with void as a return type are usually termed procedures. If a function defines a return type, it must return a variable, constant, or literal of that type before the function-closing } is encountered, or a compiler error will occur. A function definition must also specify its parameters, a list of comma-separated variable declarations, or void if it does not have any parameters. If a function does not specify any parameters, then its parameter list is implicitly void, and does not need to be declared as such. Here is a C function that calculates the square of an integer n:

int square(int n)
{
     int ans = n * n;
     return ans;
}

Once a function has been defined, we can now use this function wherever we would like to use it. For example:

int main(void)
{
     ...
     result = square(a); 
     ...
     result = square(b);
     ... 
     result = square(c);
     ...
     return 0;
}

Thus, instead of writing the entire code over and over again, we can simply call the function here. Functions are the backbone of any C algorithm. All C data types can be passed to a function except an array or function (if passed they will be converted to pointers), and all may be returned. Functions can also call other functions:

int multiply_together(int n1, int n2)
{
     return n1 * n2;
}

int add_two_and_multiply(int n1, int n2)
{
     n1 = add_two(n1);
     return multiply_together(n1, add_two(n2));  /* returns (n1 + 2) * (n2 + 2) */
}

You can call a function inside a function, as illustrated above.

It's also important to note that whitespace is ignored - so the following snippets are all the same:

int func_name(void){}
int func_name(void)
{
}
int func_name (void) {
}

Each of these snippets incorporating elements of possible styles for writing C code. The main thing to note about whitespace is it only matters when it would be between two different things which could then make a single "symbol" (a symbol is a name representing a certain value - be it a function/function location or a variable). With proper syntax in all other ways, this only can cause problems when declaring variables/functions, or when casting. Just remember to place some whitespace between each specifier, qualifier, modifier, the type and the symbol name (specifiers, qualifiers and modifiers explained in that page). Programmers prefer to use a space, but these have the same meaning:

int x=1
int
x	=

1

main() function[edit | edit source]

main(), the center of every C program, can have many forms:

int main(){}
int main(void){}
int main(int argc, char **argv){}
int main(int argc, char **argv, char **envp){} //Note that this syntax is not specified in POSIX, but is used by all three main OSes.

For the returned value of main(), in theory all functions must have a return value - except main(), as it actually should be how your programs finishes (unless you use exit();), so errors won't be raised by it not returning - the system can jump out of the code for you. However, it is considered good practice to make use of a return value for main(). If the code finishes with no problems, main() should return 0. Otherwise, it should return some other value - normally 1. The syntax for a main() function that simply returns 0 is:

int main(void)
{
  return 0;
}

Comments[edit | edit source]

Comments for functions, variables as well as a block of code place an important part of the C program. It gives details, explanation for the program reader about the purpose of that part.

Two forward-slashes next to each other (and outside a string literal - explained later with the char data type) specify a line comment. A line comment tells the compiler to ignore the rest of the line. This allows a programmer to write little notes about their code. It is recommended that you comment your code as MUCH as possible. There are also multi-line comments. These start at any forward-slash-then-asterisk ("/*") and last until the next asterisk-then-forward-slash ("*/").

int a = 4; // This is a comment for variable a

/*
  This is a comment for function square()
*/
int square(int n)
{
     int ans = n * n;
     return ans;
}

Assignments[edit | edit source]

Completion status: Almost complete, but you can help make it more thorough.