C and C++ Cheat Sheet libraries #include input and output functions #include string related functions #include memory allocation, rand, and other functions #include math functions #include time related functions functions returnType functionName( input1Type input1Name, input2Type input2Name, .... ) { // do something return value; // value
9.2k