Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
Program to calculate length of string using recursion. More...
#include <assert.h>
#include <string.h>
Functions | |
int | length (const char *str) |
Returns the length of string using recursion. More... | |
static void | test () |
Test function. More... | |
int | main () |
Driver Code. More... | |
Program to calculate length of string using recursion.
int length | ( | const char * | str | ) |
Returns the length of string using recursion.
str | the pointer of string. |
int main | ( | void | ) |
Driver Code.
|
static |
Test function.