Posts by Lucivaldo Rodrigues • 11 points
1 post
-
-1
votes2
answers40
viewsQ: Can anyone tell me how to do this program in C to display the vector in which I typed the one number that was stored in it?
#include <stdio.h> int main() { float vet[6]; int i, x; for (i=0;i<6;i++){ scanf("%f", &vet[i]); } …
casked Lucivaldo Rodrigues 11