hai..
i juz started learning C++ language & started to try creating a program.
its a simple contacts list.
here's the code:

Code:
 ========================================================= 
#include <iostream>
using namespace std;
 
#include <string>
 
 
 
struct node
{
string name;
string job;
string hp;
string bday;
node
...