📅  最后修改于: 2022-03-11 14:59:23.427000             🧑  作者: Mango
struct Random{
int a;
int b;
}
int c;
if ( c > Random){ //Gives error '> illegal operation'
do something;
}
//should be c> Random.a;
//Don't worry you're not stupid I made the same mistake!