0
Capital can't be involved in a code in c language but thus eg in python shiws capital letters are involved iwant explanation
2 odpowiedzi
+ 1
in general, some languages are case sensitive and some languages are not. for example c# is case sensitive... meaning with variables
Int x = 1; -- will return an error
int x = 1; -- no error
when coding in different languages, being aware of these differences is important.. and this extends past just variables... such as c# does not allow multiple inheritance of classes... where another language could. Each language has its own requirements and quirks.
0
TQ laura