Relative Content

Tag Archive for cinputoutputinclude

C input VS Code

I am going through the edx CS50 course for 2024, I am in the 1st week of C programming. The CS50 course has the user use the online CS50 program that includes the CS50.h module. This allows me to use <cs50.h> which includes inputs for certain data types. I have been using int height = get_int(“height”), in regular VS Code I am unable to utilize #include <CS50.h> for user input. How would I get user input in standard C? I saw some post about scanf and printf for input and output but can someone explain these functions further?