Jun 25, 2014 #1 A alimemory Junior Member level 1 Joined Jun 19, 2014 Messages 19 Helped 0 Reputation 0 Reaction score 0 Trophy points 1 Location Nigeria Visit site Activity points 119 I came across with this what s (1) for (i = 0; i<=50; i++) (2) unsigned short i, DD0, DD1, DD2, DD3; unsigned int Count what means? and explain
I came across with this what s (1) for (i = 0; i<=50; i++) (2) unsigned short i, DD0, DD1, DD2, DD3; unsigned int Count what means? and explain
Jun 25, 2014 #2 embpic Advanced Member level 3 Joined May 29, 2013 Messages 742 Helped 80 Reputation 160 Reaction score 77 Trophy points 1,308 Location india Visit site Activity points 5,213 1) This is for loop which is use to repeat the process for 50 times. 2) unsigned means all are positive numbers and short is range for numbers. these are the data types.
1) This is for loop which is use to repeat the process for 50 times. 2) unsigned means all are positive numbers and short is range for numbers. these are the data types.