This is in C language. When I call rotate() in main, the function returns false for isalpha() even though the string entered for plaintext uses alphabetic characters. Perhaps it’s identifying an alphabetic character by its ASCII value (‘A’ = 65)? I tried to test that out and used (char) with the letter variable in rotate() but it didn’t change anything.

PORTION OF MAIN

string plaintext = get_string("plaintext:  ");

    int length = strlen(plaintext);
    char ciphertext[length];

    for (int i = 0; i < length; i++)
    {
        ciphertext[i] = rotate(plaintext[i], key);
    }

ROTATE FUNCTION

char rotate(char letter, int key)
{
    if (isalpha(letter) == true)
    { ...
@jjagaimo@lemmy.ca
link
fedilink
English
16
edit-2
1Y

isalpha documentation:

Return value

Non-zero value if the character is an alphabetic character, zero otherwise.

You should be either checking for not equal to 0 instead of true, as its not necessarily guaranteed to be 1 ~= true, or removing the comparison entirely

Also make sure that your loop condition is < and not “& lt” without the space unless that’s a weird formatting issue

For more information, make sure to check the documentation for the standard library functions

@milon@lemm.ee
creator
link
fedilink
4
edit-2
1Y

Ah ha! Yes, I did check the docs but I think I just glanced over that portion. Be more careful next time. Now that I took another look at the other ctype.h functions, they all return 1 or 0. I think I confused equivalent python built-in functions as those evaluated to true/false. The < is a less than sign but it seems it doesn’t render correctly on Lemmy.

I would drop the “== true” entirely. C will evaluate any nonzero int as true in an “if” statement.

@milon@lemm.ee
creator
link
fedilink
21Y

Good point!

@lolcatnip@reddthat.com
link
fedilink
English
3
edit-2
1Y

Never, ever write “== true” or “== false” unless it’s absolutely necessary. In C that’s pretty close to never.

@canpolat@programming.dev
link
fedilink
English
3
edit-2
1Y

Please consider posting language specific questions to language specific communities in the future. For example, !c_lang@programming.dev

@breadsmasher@lemmy.world
link
fedilink
English
4
edit-2
1Y

what language? needs more context

portion of main and function are just titles for me, if that is supposed to contain code

@milon@lemm.ee
creator
link
fedilink
31Y

Sorry. It’s in C. Updated post. Yes those are titles. I just included the relevant portions rather than the entire code.

Create a post

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person’s post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you’re posting long videos try to add in some form of tldr for those who don’t want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



  • 1 user online
  • 1 user / day
  • 1 user / week
  • 1 user / month
  • 1 user / 6 months
  • 1 subscriber
  • 1.21K Posts
  • 17.8K Comments
  • Modlog