Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

C program to compare two strings without using library function

Categories: Strings. No Comments on C program to compare two strings without using library function

In this article we will learn to implement a C program to compare two strings without using library function. A C program is provided below to compare two strings without using predefined function. Program is as follows: Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field […]

Read the rest of this entry »

C program to concatenate two strings without using library functions

Categories: Strings. No Comments on C program to concatenate two strings without using library functions

In this article we will learn to implement a C program to concatenate two strings without using library functions. A C program is provided below to join or concatenate two strings without using predefined function like strcat. Program is as follows: Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email […]

Read the rest of this entry »

C program to copy one string to another

Categories: Strings. No Comments on C program to copy one string to another

In this article we will learn to implement a C program to copy one string to another. A C program is provided below to copy one string to another without using predefined function strcpy.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty if you’re […]

Read the rest of this entry »

C program to find the length of a string without using strlen

Categories: Strings. No Comments on C program to find the length of a string without using strlen

In this article we will learn to implement a C program to find the length of a string without using strlen. A C program is provided below to find length of a string without using predefined function.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this […]

Read the rest of this entry »

C program to implement predefined string functions

Categories: Strings. No Comments on C program to implement predefined string functions

In this article we will learn to write a C program to implement predefined string functions. A C program is provided below to demonstrate implementing predefined string functions like strlen, strcmp, etc.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty if you’re human: […]

Read the rest of this entry »

C program to compare, concatenate and append strings using user defined functions

Categories: Strings. No Comments on C program to compare, concatenate and append strings using user defined functions

In this article we will learn to implement a C program to compare, concatenate and append strings. A C program is provided below to read two strings and perform comparison, concatenation and append operations.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty if […]

Read the rest of this entry »

C program to perform the different operations on strings

Categories: Strings. No Comments on C program to perform the different operations on strings

In this article we will learn to implement a C program to perform the different operations on strings using functions. A C program is provided below to perform various operations on strings.   Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests. Email address: Leave this field empty if you’re human: […]

Read the rest of this entry »