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

  • Home
  • SEARCH
  • 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 3596940
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:03:14+00:00 2026-05-18T20:03:14+00:00

I have the following part of code : for(int i=0;i<n;i++) { printf(Student %d\n,i+1); printf(Enter

  • 0

I have the following part of code :

for(int i=0;i<n;i++)
{
    printf("Student %d\n",i+1);
    printf("Enter name : ");
    scanf("%s",&(student+i)->name);
    fflush(stdin);

    lengthName = strlen((student+i)->name);
    while(lengthName !='\0')
    {

    }} 

when the length is shorter than 10, it will add hyphens until reaching the maximum size.
Ex : John =>> 6 hyphens will be added

I know how to do it in csharp but can’t figure it out in c.
Could some of you give me some lights please?

PS : Oh yes the variable name is char name[10+1] and it a part of the structure called student.

  • 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-18T20:03:15+00:00Added an answer on May 18, 2026 at 8:03 pm

    This is so simple that it seems like I must be missing something.

    lengthName = strlen(student[i].name);
    while (lengthName < 10)
      student[i].name[lengthName++] = '-';
    student[i].name[lengthName] = '\0';
    

    Perhaps you are confused by C#’s (presumed) possession of a first-class string type? No such thing in C, only bare arrays of characters; which is at once tedious (you have to do all the memory management yourself) and liberating (as you see above).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following part of code : for(int i=0;i<n;i++) { printf(Student %dn,i+1); printf(Enter
I have the following code int ParseData(unsigned char *packet, int len) { struct ethhdr
I have the following code: int pageNumber = 0; int pageCount = 10; int
If we have this code: int foo=100; int& reference = foo; int* pointer =
I have the following code but it keeps presenting errors. The first part of
The following isn't the it's just the part causing problem: int s,p; scanf(%d,s); switch(s)
I have the following regular expression : I figured out most of the part
I have a custom sharepoint web part that is throwing the following exception: System.Security.SecurityException:
I Have following code: Controller: public ActionResult Step1() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public
I have following Code Block Which I tried to optimize in the Optimized section

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.