Tuesday, June 19, 2012
C program to reverse a string !!
Below is the complete working example for string reverse fuction in C programming language.
#include<stdio.h> #include<string.h> //strrev function using arrays void str_rev_arry(char *str) { int len = strlen(str); int i=0,j=len-1; for(i=0;i<len/2;i++,j--) { char temp = str[i]; str[i] = str[j]; str[j] = temp; } } //strrev function using pointers void str_rev_ptr(char *str) { int len = strlen(str); int i; char *begin, *end; begin = str; end = str+len-1; for(i=0;i<len/2;i++) { char temp = *begin; *begin = *end;; *end = temp; begin++; end--; } } //strrev function using recursion void str_rev_rec(char *str, int begin, int end) { char temp; if(begin>=end) return; temp = *(str+begin); *(str+begin) = *(str+end); *(str+end) = temp; str_rev_rec(str, ++begin, --end); } main() { char str[]="Hello string"; int len,begin,end,choice; printf("Enter the String which is to be reversed\n"); printf("1. Using Arrays\n2. Using Pointers\n3. Using Recursion\n4. Exit\n"); printf("Enter the method choice\n"); scanf("%d",&choice); switch(choice) { case 1: printf("before reverse the string is '%s'\n",str); str_rev_arry(str); printf("after reverse the string is '%s'\n",str); break; case 2: printf("before reverse the string is '%s'\n",str); str_rev_ptr(str); printf("after reverse the string is '%s'\n",str); break; case 3: len = strlen(str); begin = 0; end = len-1; printf("before reverse the string is '%s'\n",str); str_rev_rec(str,begin,end); printf("after reverse the string is '%s'\n",str); break; default: printf("wrong choice\n"); break; } }
Subscribe to:
Post Comments (Atom)
Popular Posts
-
A universally unique identifier ( UUID ) is an identifier standard used in software construction, standardized by the Open...
-
Recently I started working on Japser Studio professional for my new project Cloud to generate the reports. I was very new to all cloud ...
-
Below is C program for AVL Tree implementation. #include<stdio.h> #include<malloc.h> typedef struct bst { int info; int hei...
-
strcmp is another string library function which is used to compare two strings and returns zero if both strings are same , returns +ve valu...
-
One of the complex operation on binary search tree is deleting a node. Insertion is easy by calling recursive insertion. But deletion wont...
-
We have recently faced one tricky issue in AWS cloud while loading S3 file into Redshift using python. It took almost whole day to inde...
-
Object slicing: when a derived class object is assigned to a base class object. only base class data will be copied from derived class and...
-
We have faced lot of weird issues while loading S3 bucke t files into redshift. I will try to explain all issues what we faced. Before go...
-
Below code is to find the cube root of a given integer number with out using pow math library function. Its very simple and brute force...
-
Recently we faced one issue in reading messages from SQS in AWS cloud where we are processing same message multiple times. This issue we...
No comments:
Post a Comment