Skip to main content

Index


General

  • The main difference between C and C++ is that C++ support classes and objects, while C does not.

boilercode

#include <iostream>

/*

*/

using namespace std;

int main(int argc, char const *argv[])
{
/* code */
return 0;
}