Posts by André Luís Alves • 7 points
4 posts
-
0
votes2
answers40
viewsA: 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> main() { int i, x, posicao = 0; float vet[6]; for (i=0; i<6; i++){ printf("%da. posicao: ", i+1); …
canswered André Luís Alves 7 -
0
votes1
answer42
viewsA: string in C returning symbols instead of characters
Hello! Use the gets function(). #include<stdio.h> #include<stdlib. h> #include<conio. h> int main(void) { char name[61]; printf("Digite seu nome: "); gets(nome); printf("O nome…
-
-1
votes2
answers40
viewsA: 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> main() { int i, x, posicao = 0; float vet[6]; for (i=0; i<6; i++){ printf("%da. posicao: ", i+1); scanf("%f", &vet[i]); } printf("\nDigite um numero: "); scanf("%d",…
canswered André Luís Alves 7 -
-1
votes1
answer97
viewsQ: Does anyone know how to translate the "copy" and "print" buttons of Datatables?
"Buttons": ["copy", "csv", "excel", "pdf", "print", "Colvis"] I would like to present the "copy" and "print" buttons as "Copy" and "Print" respectively. Could someone help me?
asked André Luís Alves 7