Capital can't be involved in a code in c language but thus eg in python shiws capital letters are involved iwant explanation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Capital can't be involved in a code in c language but thus eg in python shiws capital letters are involved iwant explanation

8th Jun 2018, 8:57 AM
Karthik
Karthik - avatar
2 Answers
+ 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.
8th Jun 2018, 9:37 AM
laura
0
TQ laura
8th Jun 2018, 9:56 AM
Karthik
Karthik - avatar