struct bruh {
short int l;
short int aK;
char cd;
};
struct bruh1 {
int aK;
char cd;
};
struct bruh2 {
double a;
char b;
};
void setup() {
Serial.begin(115200);
Serial.println(sizeof(bruh));
Serial.println(sizeof(bruh1));
Serial.println(sizeof(bruh2));
}
void loop() {
}