0
Hello,In any programming language why it becomes important to follow a predefined syntax?
Let us take c language.so we have to first declare data type of variable and then its name.See below: Int a=5; Why can't we write a int=5; why it will be wrong.
3 ответов
+ 3
it is just the way the language is designed. You could, in theory, write your own language by changing things you dont like in other languages, but, is that worth it?
+ 1
a = 5
Means value stores in a with data type int
In case a int = 5;
It's int is datatype not store numbers
+ 1
let make this simple, you feel hungry and need to eat, you will decide on what to eat depending on what you feel like eating that's data types, the food you prepare to it is the value, and your stomach is the variable which houses all the food, just like int a=5; //and the semicolon tell you to stop eating while you are filled up 😂😂😁😁
hope that helps