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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:50:52+00:00 2026-06-07T23:50:52+00:00

I am pretty new to programming in C++, I want to display How to

  • 0

I am pretty new to programming in C++, I want to display

How to display produce a output.txt file in this format.

A B C D E F G H I J K L M N O P Q R S T U V W X
Y Z

T W G X Z R L L N H A I A F L E W G Q H V R N V D U

in text file but i am not sure why they display as rubbish.

#include <iostream>
#include <cstdlib>
#include <ctime>
#include <fstream> 
using namespace std;


void random (std::ostream& output)
{
     int letter[26];
     int i,j,temp;

    srand(time(NULL));


        for(i=0; i<26; i++)
            {
                 letter[i] = i+1;
                 output<<(char)(letter[i]+'A'-1)<<" "; 
//by ending endl here i am able to display but the letter will display in horizontal which is not what i wanted     

            }    

        for(i=0; i<26; i++)
        {
            j=(rand()%25)+1; 
            temp = letter[i];
            letter[i] = letter[j];
            letter[j] = temp;
             output<<((char) (letter[i]+'A'-1))<<" ";
        }



}
  • 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-06-07T23:50:55+00:00Added an answer on June 7, 2026 at 11:50 pm
    void random (std::ostream& output)
    {
         int letter[26];
         int i,j,temp;
    
        srand(time(NULL));
    
    
            for(i=0; i<26; i++)
            {
                 letter[i] = i+1;
                 output<<(char)(letter[i]+'A'-1)<<" ";      
    
            }    
            output << "\n";        //that's all what you need
            for(i=0; i<26; i++)
            {
                j=(rand()%25)+1; 
                temp = letter[i];
                letter[i] = letter[j];
                letter[j] = temp;
                 output<<((char) (letter[i]+'A'-1))<<" ";
            }
    
    
    
    }
    

    For the future – don’t use std::endl because it also flush stream buffer, which might be unwanted. Use ‘\n’ instead. But whole function can be much simpler:

    void random (std::ostream& output)
    {
        srand(time(NULL));
    
    
            for(int i = 65; i < 91; ++i)            // i == 65, because it's A in ASCII
                output << (char)i << " ";
            output << "\n";        //that's all what you need
    
            for(int i=0; i<26; i++)
            {
                 output <<((char)(rand()%26 + 65))<<" ";
            }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Pretty new to Java programming, but I'm having trouble getting this to run. I
I'm pretty new to programming, and I'm creating a simple text-based game.> I'm wondering
I'm pretty new in iphone programming and have stumbled upon this issue which I
I'm kinda new at both programming, and WPF. I know that this is pretty
I'm pretty new at C programming, and this type of thing keeps popping up.
I am pretty much new to linux programming. I want to create a log
I am fairly new to Android programming, but I am getting pretty good at
I'm pretty new to programming but I feel I'm getting the hang of it
I'm pretty new to iOS programming and I have this problem. I have a
I'm pretty new to Perl but have been programming in java for several months

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.