Calling of functions in C – Free C programming Tutorials

In this tutorial you will familiarize with the function declaration,definition of functions and calling of a function along with the examples. Function Declaration : A function declaration tells the compiler about the function name and how to call the function. Syntax for function declaration is given below : return_type function_name( parameters\arguments list ); For the above defined …

Calling of functions in C – Free C programming Tutorials Read More »

String in C and its functions- Free C programming Tutorials

String in C launguage is defined actually as an array of character but the only difference is, it is terminated with a special character which is ‘/0’ (null character). For example: “ABCDE123” In this section, we learn how to declare strings, how to work with strings and how to use the pre-defined string handling functions in …

String in C and its functions- Free C programming Tutorials Read More »