Advertisement
gabbyshimoni

arrayExample03

Jun 2nd, 2018
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. /*
  2. הגדרת מערך עם אתחול זהה לכל התאים*/
  3. int numbers[4]={23};
  4. void setup() {
  5.   Serial.begin(9600);
  6.   for (int i = 0; i < 4; i++) {
  7.     Serial.print("numbers[");
  8.     Serial.print(i);
  9.     Serial.print("]=");
  10.     Serial.println(numbers[i]);
  11.   }
  12. }
  13.  
  14. void loop() {
  15.   // put your main code here, to run repeatedly:
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement