Code:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
#define index 5
struct am{
string rule;
int priority;
}set[index];
void printset(am amg)
{
cout<<amg.rule<<endl;
cout<<amg.priority<<endl;
}
Leave a comment: