libcs50
libcs50 copied to clipboard
This is CS50's Library for C.
Hi, I have followed the guideline : https://cs50.readthedocs.io/libraries/cs50/c/ in order to install the library inside the subsystem of Linux using Windows. Despite all it is still not recognize in Visual...
Simple documentation issue. The Readme.md page provides the use of `make` and `make deb` but omits the `make rpm` feature for use with RPM based distros like RH/Fedora SUSE/opensuse, etc.....
Added a section in the README.md for Windows users that can run the CS50 Library locally.
Under what license is this library provided? The LICENSE file indicates GPL V3. The source code itself indicates BSD 3-Clause in the comments. The command-line options to fpm in the...
my computer has no clue what sudo is am I using the wrong command C:\Users\user\Downloads\libcs50-11.0.2>sudo make install 'sudo' is not recognized as an internal or external command, operable program or...
in line 6: get_int parentheses should have any string " int get_int(const char *format, ...) __attribute__((format(printf, 1, 2))); " so, let's fix it...
I had a pull request with the same issue, but I had .tar.gz instead of .gz files. This may fix issue#168 from Professor Malan. I rewrote the docs with markdown...
Running on an intel mac, after running `sudo make install` on the library, and compiling a basic c file: ```c #include #include int main(){ string res = get_string("> "); printf("%s",...