hello all , i have to initialize the array of stucture singleIMEIarr to null , using NULL doesnt work , when i assign {'\0'} it doesnt execute. any suggestions at to where im wrong ?
struct singleIMEI
{
string planname;
string plandescription;
string scriptexec;
string startdate;
string starttime;
string stopdate;
string stoptime;
string delayinterval;
string repeatdelay;
string notonweekend;
string activate;
string temptime;
string tempdate;
}; //VECTOR IMPLEMENTATION PENDING
singleIMEI singleIMEIarr[30] = {'\0'};