XavierAndreu

Array

Feb 17th, 2023
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. //Youtube--> https://youtu.be/DRpKJEqHpvk
  2.  
  3. void OnStart()
  4. {
  5. int ArrayParciales[100];
  6.  
  7. for(int a=0; a<=10; a++)
  8. ArrayParciales[a]=a;
  9.  
  10. for(int b=0; b<=10; b++)
  11. {
  12. Sleep(500);
  13. printf(ArrayParciales[b]);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment