Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int numbers[10] = {
- 10,
- 20,
- 30,
- 40,
- 50,
- 60,
- 70,
- 80,
- 90,
- 100
- };
- int main(){
- int i;
- for(i=0; i<10; i++){
- int arrayValue = numbers[i];
- printf("%d\n",arrayValue);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement