Posts by Renan Margarido • 13 points
4 posts
-
-2
votes2
answers302
viewsQ: When I run the commands on Switch Case, does it end instead of going back to Menu?
int main(){ int tensao, corrente, resistencia, potencia, tempo, cargaeletrica, trabalho, i; printf("\nPara calculo de Tensao(resistencia*corrente) digite 1\n\nPara calculo de…
-
0
votes2
answers32
viewsQ: After typing the P Value, you are not running the printf of the second for
#define MAX 15 #define TAM 2 struct { char m[MAX]; int ano; float v; } car[TAM]; int main(void) { int i; int p; for(i=0; i<TAM;…
-
-1
votes1
answer34
viewsQ: I’m not getting these steps ! I wanted help
(b) Find the student with the highest score of the first test. (c) Find the student with the highest overall average. (d) Find the student with the lowest overall average. #define MAX 50 struct {…
-
0
votes1
answer52
viewsQ: Struct ! Error on line 47 at the moment it compiles, Follow the program in c
#define MAX 50 struct{ int ra; char nome[MAX]; float prova; }aluno[5]; int main(){ struct aluno; int i; int j; printf("Determine o Nome do…