VIDEO TUTORIALS
1. C programming Language Tutorial-2
a) C programming tutorials by thenewboston(Bucky Roberts!) -15 videos
b) C Programming language youtube playlist by DEREK BANAS
2. programming with C++ for beginners(playlist) by thenewboston(Bucky Roberts!) -73 videos
3. Introduction to linux(playlist) by eli the computer guy!-9 videos
4. Java tutorial -2
a) java beginner programming tutorials by thenewboston(Bucky Roberts!) -87 videos
b) Java language youtube playlist by DEREK BANAS
5.Introduction to Networking(playlist) by eli the computer guy!-29 videos
6. Learn xhtml & CSS- 2
a) xhtml and css tutorial with thenewboston(Bucky Roberts!)-46 videos
b) css, xhtml and html youtube playlist by DEREK BANAS
7. Learn the basics of JavaScript -2
a) javascript with thenewboston(Bucky Roberts!) -40 videos
b) javascript youtube playlist by DEREK BANAS
8. Learn HTML5(playlist) with thenewboston(Bucky Roberts!) -53 videos
NAMES OF LARGE NUMBERS::
Long scale(Continental Europe, Archaic British, and India) is the English translation of the French term échelle longue. It refers to a system of large number names in which every new term greater than million is 1,000,000 times the previous term: billion means a million millions (10^12), trillion means a million billions (10^18), and so on.
Short scale(USA and Modern British) is the English translation of the French term échelle courte. It refers to a system of large number names in which every new term greater than million is 1,000 times the previous term: billion means a thousand millions (10^9), trillion means a thousand billions (10^12), and so on.Given Image is of a short scale large numbers.
what is the difference between these 2 programs?
ReplyDeleteint i=5;
printf("%d",i++*i--);
O/P:30
int i=5,j;
j=i++*i--;
printf("%d",j);
O/P:25