Skip to main content

How to Reverse a String in C without using C Reverse String function and using either Pointers or Recursive Function.

C Program to Reverse a String without using C Reverse String function (strrev() in string.h) and using either Pointers or Recursive Function is given below:-
1) C Example program to Reverse a String using pointers :

#include<stdio.h>
int strLength(char*); // user defined function declaration or function prototype
void strReverse(char*); // UDF declr or fun proto
main()
{
char str[100];
printf("Enter a String to be Reversed :");
gets(str); // using gets() instead of scanf() because scanf() does not take space char
strReverse(str); // function with argument as string variable str calls here
printf("Reverse of given String is \"%s\".\n", str);
return 0;
}
void strReverse(char *str) // strReverse() function defines here
{
int length, c;
char *begin, *end, temp;
length = strLength(str); // function strLength() calls here and which returns integer value to be stored in "length" variable.
begin = str;
end = str;
for ( c = 0 ; c < ( length - 1 ) ; c++ )
end++;
for ( c = 0 ; c < length/2 ; c++ )
{
temp = *end;
*end = *begin;
*begin = temp;
begin++;
end--;
}
}
int strLength(char *pointer) // strLength() function defines here, which returns an integer
{
int c = 0;
while( *(pointer+c) != '\0' )
c++;
return c;
}

2) C Example program to Reverse a String using Recursive Function ( function calls itself ) :

#include<stdio.h>
#include<string.h>
void strReverse(char*,int,int);
main()
{
char str[100];
printf("Enter a String to be Reversed :");
gets(str);
strReverse(str, 0, strlen(str)-1);
printf("Reverse of given String is \"%s\".\n", str);
return 0;
}
void strReverse(char *ch, int begin, int end)
{
char a, b, c;
if ( begin >= end )
return;
c = *(ch+begin);
*(ch+begin) = *(ch+end);
*(ch+end) = c;
strReverse(ch, ++begin, --end);
}

Popular posts from this blog

C Code Shortening Techniques or My Logic for Reduced Source Code Writing in C Program Language

C Code Shortening Techniques or My Logic for Reduced Source Code Writing Tips and Tricks in C Program Language :- Role of Semi Colon(;) and Curly Braces({ }) in C Program Perhaps, you might have heard that the for() loop should not end with ";" like if(). But, in fact the ";" is using in C language as a Statement Terminator, so, if we want to terminate for() loop, then we should use ";" at the end of for() loop. [ Header files are to be included as usual, it is not written in the examples ] Question : write a C program to print 1 to 10 numbers using for() loop ? Example 1 : void main() { int i; for ( i = 1 ; i <= 10 ; i++ ) { printf("%d\n",i); } } /* above program, for() loop has one statement outside, so we do not use ";" at the end, because if we put ";" the for() will not take the continuing statement as its own. */ Example 2 : void main() { int i; for ( i = 1 ; i <= 10 ; printf( "%d \n" , i ...

How to create User Defined Functions in C, see example Perfect_Number() function used as UDF in C Program

How to create User Defined Functions in C, see example Perfect_Number() function used as UDF in C Program :- Example : This is a program to find Perfect Numbers upto a limit using User Defined Function(UDF) in C Program Language :- #include<stdio.h> #include<conio.h> int Perfect_Number(int); /* UDF function prototype declaration : int argument and int returns */ main() { int lmt,num; clrscr(); printf("Enter a Limit :"); scanf("%d",&lmt); for(num=5 ; num<=lmt ; num++) { /* function calls here with Actual Parameter num and returns either 1 or 0 and checks */ if(Perfect_Number(num)==1) { printf("\n%d",num); } } getch(); } /* Either the function should be defined out side the main() or it should be in one of the header files included. function definition with a Formal Parameter as n */ int Perfect_Number(int n) { int a,sm; sm=0; for(a=1 ; a<n ; a++) { if(n%a==0) { sm=sm+a; } } if(sm==n) return 1; else ...

Hello World C Program with full explanation.

Hello World C Program with Explanation are given below :- #include<stdio.h> #include <conio.h> void main() { clrscr(); printf("Hello World!"); getch(); } Explanations: - printf() function is defined in the header file stdio.h, so it must be included at top of the program. Like clrscr() and getch() functions are defined in conio.h. To include a Header file, the syntax is #include at the top of the program. C Program to be written in main() function. Then void main() means the main() function returns nothing and it will study later. We use ";" as a statement terminator so clrscr(),printf() and getch() are used ";" but "void main()" doesn't have ";" because it is not terminated there, it follows "{" and "}" . clrscr() function uses for to clear the screen. printf() for print something. getch() uses for to get a character from keyboard and it is used here as a wait command. Save file name as " an...