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 7071071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:38:35+00:00 2026-05-28T05:38:35+00:00

My professor asked me to do this: Input Number: 5 +++++ +++++ +++++ +++++

  • 0

My professor asked me to do this:

Input Number: 5
+++++
+++++
+++++
+++++
+++++

I’ve been trying so hard to get thi; I kept on ending up with a ” + ” with a huge blank and
” + “.

Can you please help me fix this code in C?

#include <stdio.h>
#include <conio.h>
int space(int space1)
{
    if(space1 == 0)
    {
        return 1;
    }
    else
    {
        return printf("\n") && space(space1 - 1);
    }
}
int visual(int plus)
{
    if (plus == 0)
    {
        return 1;
    }
    else
    {
        return printf("+") && visual (plus - 1) && space(plus - 1);
    }
}

int main()
{
    int number;
    printf("Please give the number\n");
    scanf("%d",&number);
    visual(number);
    getch();
}

A new edit; frustrating for me. It gives me 5 rows of + and a big space.

  • 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-28T05:38:35+00:00Added an answer on May 28, 2026 at 5:38 am

    Complete Solution Updated without loop :::

    #include <stdio.h>
    #include <conio.h>
    int space(int space1)
    {
        if(space1 == 0)
        {
            return 1;
        }
        else
        {
            return printf("+") && space(space1 - 1);
        }
    }
    int visual(int plus,int add)
    {
        if (plus == 0)
        {
            return 1;
        }
        else
        {
            space(add);
            printf("\n");
            visual (plus - 1,add);
        }
    
    }
    
    int main()
    {
        int number,i;
        printf("Please give the number\n");
        scanf("%d",&number);
    
        visual(number,number);
    
        getch();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been asked by my professor at university to demonstrate how load balancing
Sorry if this question has been asked 100 times before, unfortunately, i haven't found
(This is NOT a homework help question) I was asked by my professor to
This question has been asked before (see here and here , for example). However,
My professor wrote this median function and I don't understand it very well. Can
My professor asked us this question: What are the differences between a C#(.Net) Compiler
I have been taking a few graduate classes with a professor I like alot
This is my first post, so please forgive me if this question has been
For my Advanced Algorithms and Data Structures class, my professor asked us to pick
for my final exam (to graduate from university) I’ve been asked to create a

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.