C++ Snippet Library
Welcome to the c++ snippet library, here you will found sound useful chunks of code
// This is a one line comment, it begins with a double slash (//) /* This is a multiline comment, It begins with a slash + asterisk and ends with a asterisk + slash, Line 1, Line 2, - - - Line N. */
int a = 0; double b = 2.0; float c = 2.f; string d = "hello world";