Saturday 5 October 2013

Convert given string into Lowercase

#include <stdio.h>
#include <string.h>
 main()
{
    char string[] = "Strlwr in C";

    printf("%s\n",strlwr(string));
 }

No comments:

Post a Comment