cake icon indicating copy to clipboard operation
cake copied to clipboard

missing error on abc[4] = "abcd"

Open thradams opened this issue 1 year ago • 1 comments

int main() {
char abc[4] = "abcd"; // missing error
char def[4] = "abd"; // OK
}

thradams avatar Mar 13 '24 18:03 thradams

also - no space for null

`char a[3] = "abc"; 

thradams avatar Mar 13 '24 19:03 thradams

fixed

thradams avatar Aug 09 '24 21:08 thradams