How to insert a string into string?

Discussion in 'C' started by Tran, Mar 13, 2008.

  1. Tran

    Tran New Member

    Joined:
    Mar 13, 2008
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    I am new programmer in C. I meet a difficult when I write a code " insert a string into a string".

    For example:

    I have a string: "she is 21 old"
    I want to insert "years" between "21" and "old". (position is 10)
    Output is : she is 21 years old.

    This is my code:


    Code:
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    
    int main(void)
    {
    	char position, str[100],substr[20];
    	int i, count ;
    	
    	printf("-------------------------\n");
    	printf("Enter a sentence (str): ");
    	gets(str);
    	printf("\n Insert a word (substr): ");
    	gets(substr);
    	printf("\n Insert word at position (i): ");
    	gets(i);
    		
    	for (count = 0; count < strlen(str)-1; count ++)
    	{
    		if (count == i)
    		{
    			strcat(str,substr);
    			printf("%s\n", str);
    		}
    	}
    	return 0;
    }
    
    when i compile this code, I recieved a warning about gets function. And when i run it, after i enter 2 strings and position. I recieved an error: segmentation fault (core dumped)

    Please help me how to fix it, thank so much.

    Tran
     
  2. heavensgate15

    heavensgate15 New Member

    Joined:
    Mar 18, 2008
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    Hope that I'm not late.. hehe, about that "gets" thing, you cannot use it in a variable which the datatype is not a string. Also, an array of characters is different from a string because in a string, there's a sentinel value at the end of the array which is '\0' and it automatically put at the end if the user enters a sentence or a word while in an array of characters, there's no sentinel value at the end of the array. When would a variable be an array of characters? Well, I'm not sure but maybe when you scan the letters one by one.. And about that string, don't worry, it's not your job to put that NULL thing; it's the work of the computer itself...

    My point here is that, you cannot use predefined functions if the variable or any value in the function parameter is different from the one declared in that predefined function... To see the different predefined functions in C, press F1.


    Hope you understand my lecture.... :)
     
  3. tuvw300

    tuvw300 New Member

    Joined:
    May 20, 2008
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    guild

    Understood not greatly whether you do send to you more articles I to post the box unit or the short news issue I. I want to understand more
     
  4. NewsBot

    NewsBot New Member

    Joined:
    Dec 2, 2008
    Messages:
    1,267
    Likes Received:
    2
    Trophy Points:
    0
    Re: guild

    If you continue to spam the forums your account could be banned and your sites could be flagged as spam.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice