I can't figure out how to set default value for integer in structure. For example
 typedef struct {
        char breed[40];
        char coatColor[40];
        int maxAge = 20;
    } Cat;
The code above gives me an error on execution - Expected ';' at end of declaration list
 
     
     
     
     
     
    