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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:58:01+00:00 2026-06-09T20:58:01+00:00

I made a Caesar cipher that successfully worked with command line arguments with the

  • 0

I made a Caesar cipher that successfully worked with command line arguments with the help of looking at other code examples. However, I want to make a version where you can scan in the key rather than having it be as a command line argument. The problem is, for some reason I can’t figure out, the fgets part of the code doesn’t let the user enter in anything and the program simply runs through and returns 0. The top part of the code is here:

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


int main (void)
{

int k;          //key
char  e[100];   //plain text to encrypt
int length;     //string length for plain text
int c;          //encrypted int (displays as char)

          //get key
          printf("Key? ");
          scanf("%d", &k);


         //display the key
    printf("The key is: %i\n", k);

         //prompt for plain text to encrypt
   printf("Please enter the words to encrypt:\n");
     fgets(e, 100, stdin);   

     printf("%s", e); //print words to encrypt



         //get length of plain text string
     length = strlen(e);    
  • 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-09T20:58:02+00:00Added an answer on June 9, 2026 at 8:58 pm

    scanf() leaves the newline in the buffer, so when you get to fgets(), the first character read is a newline, which terminates the fgets() call, effectively returning an empty line. You’ll need to do something to skip over the newline before you call fgets().

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

Sidebar

Related Questions

I made an iphone app to capture image from camera and to set that
I made an application that passes trough an XML file and extracts the entries
I made a little PHP script that checks if an email is valid. The
I made a UITableViewCell and I have 20 rows in that table in which
I made myself a template for all JSPs in my webapp that keeps things
Made a fiddle for this: http://jsfiddle.net/terjeto/MN4FJ/ My problem is that dragleave fires when you
Made a new project, added main.cpp and wrote the code at this URL: http://www.boost.org/doc/libs/1_43_0/doc/html/boost_asio/example/echo/async_tcp_echo_server.cpp
made a menu out of the following code but the original href in the
I made a custom DatePicker that extends the android DatePicker UI component. I needed
I made this server class that starts a thread when new connection comes in.

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.