Advertisement
gabbyshimoni

arrayExample07

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