Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6989979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:17:08+00:00 2026-05-27T19:17:08+00:00

I want to insert a new line feed within an array such that if

  • 0

I want to insert a new line feed within an array such that if the string length of my array increases beyond say 14 here the further contents of the array when displayed are displayed in a new line in the output console. Foe e.g Here in below program I want to Display “mein hoon don” in first line and after these 14 characters. I want to DISPLAY next content “Don Don Don” in a new line in output console. I read that using \0xa(hexa) and \10 in decimal are newline feed . But When i tried to use them in my code , I was not able to produce desired output.

# include <iostream.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>

int main()
{
    char abc[40];
    strcpy(abc,"mein hoon don.");
    abc[15]='\10';
    abc[16]='\0';
    strcat(abc,"Don Don Don");
    cout << "value of abc is " << abc;
    getchar();
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:17:08+00:00Added an answer on May 27, 2026 at 7:17 pm

    Change:

    abc[15] = '\10';
    abc[16] = '\0';
    

    to:

    abc[14] = '\n';
    abc[15] = '\0';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

so the problem is, that i want to insert a new row after another
I want to read a line in a file and insert the new line
I have a table called Events that I want to insert information to. Here
I want insert in the row from database, array of values as that each
I want to insert a new row into an Access database. I'm looking at
EntityManager.merge() can insert new objects and update existing ones. Why would one want to
I want to insert say 50,000 records into sql server database 2000 at a
I want to insert a pair< string, vector<float> > into a map, first it
I have an XML document and want to insert a new node at a
I want to get a carriage return/new line by hitting the return key on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.