Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
using namespace std;
int decimalToBinary()
{
int num;
int place = 1;
int res = 0;
#include <iostream>
#include <cstring>
#include <vector>
using namespace std;
//struct Car
//{
// char color[20];
// char model[20];
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
using namespace std;
struct Book
{
char name[20];
#include <iostream>
#include <time.h>
using namespace std;
//int main()
//{
// int count = 5;
//
// string *ar = new string[count];
//
#include <iostream>
using namespace std;
//struct ComplexNumber
//{
//public:
// ComplexNumber();
// ComplexNumber(double a, double b);
// ComplexNumber plus(ComplexNumber&);
// ComplexNumber minus(ComplexNumber&);