Advertisement
hercioneto

Programa C Exemplo Vetor

Oct 19th, 2023
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. // Online C compiler to run C program online
  2. /* Exemplo Vetor
  3. */
  4.  
  5. #include <stdio.h>
  6.  
  7. void main() {
  8.     int vetor[8];
  9.     int num = 10;
  10.     for (int i = 0;i<=7;i++) {
  11.         vetor[i]=num;
  12.         num = num+10;
  13.     }
  14.     for (int i = 0;i<=7;i++) {
  15.         printf("Vetor na posicao %i vale %i \n",i,vetor[i]);
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement