This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <cs50.h> | |
| #include <stdlib.h> // For access to atoi | |
| #include <ctype.h> // For access to isalpha, isupper, islower | |
| #include <string.h> // For access to strlen | |
| int main(int argc, string argv[]) | |
| { | |
| if (argc != 2) | |
| { |