Structure in C

A structure contains a number of data types grouped together. These data types may or may not be of the same type Uses of Structures in C Where are structures useful? The immediate application that comes to the mind is Database Management. That is, to maintain data about employees in an organization, books in a … Read more

Standard Library String Functions in C

List of all Standard Library String Functions Function Use strlen Finds length of a string strlwr Converts a string to lowercase strupr Converts a string to uppercase strcat Appends one string at the end of another strncat Appends first n characters of a string at the end ofanother strcpy Copies a string into another strncpy … Read more