#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
size_t str_len (const char *s)
{
  return strlen (s);
}
 
int main ()
{
  char *a = NULL; 
  printf ("Size of the string = %d\n", str_len (a)); 
  return 1;
}

