Code questions pertaining to Harvard's self-study introductory.
It's all in the title; super-simple I reckon, but it's so hard to search for syntactical things anywhere. These are …
c file-type cs50I'm trying to convert each letter in a string to it's ASCII number. Using int letter = (atoi(ptext[i])); gives …
c cs50I'm attempting to use a C library for an opencourseware course from Harvard. The instructor's instructions for setting up the …
c cs50I have an assignment I am supposed to turn in for my computer science MOOC CS50. In it I have …
c cs50The following program is refusing to compile because of these errors: vigenere.c:52:31: error: incompatible integer to pointer conversion assigning …
c pointers compiler-errors cs50 incompatibletypeerrorI want to "multiply" a string by an int variable that the user inputs. #include <cs50.h> #include &…
c cs50I am using the CS50 appliance from Harvard and trying to make a character lowercase. I am trying to use …
c cs50 tolower