+ 3
Static vs Dynamic
What is a static/dynamic programming language? What is the difference between them?
3 RĂ©ponses
+ 12
In simple Example
static binding
int a = 10+20;
Dynamic binding
int a = 10, b =20;
int c = a+b;
+ 11
Saeed
All programming language are dynamic.
It depends on you how you write code on that language.
+ 3
Sumit Programmerđđ could you tell me a dynamic programming language name?