Posts

Showing posts with the label cin in cpp

Basic Of Of C++ Programming || Data Types, cout, cin, If-else, for, while in cpp | Math Table Generator In cpp

 Basic Of Of C++ Programming  Starter Template Of C++ : #include   < iostream >   //HEADER FILE using   namespace   std ; int   main ()  //MAIN FUNCTION WHICH RETURN TYPE IS INTEGER {     //WRITE STUFF HERE      return   0 ; } Data Types in C++: /* Data Type   Meaning                  Size (in Bytes) int         Integer                    2 or 4 float      Floating-point                4 double     Double Floating-point    ...