Posts by Guilherasmin silva • 47 points
4 posts
-
0
votes1
answer129
viewsQ: How to make a graphical interface of a menu?
Guys I want to make a menu with graphical interface, I’ve done in C the code without graphical interface, but as in C is not possible to make interfaces, you know options besides Tkinter, qtcreator,…
-
0
votes1
answer76
viewsQ: Why can’t I print out what’s on the list?
#include <stdio.h> #include <stdlib.h> #include<conio.h> typedef struct cadastro { char nome[30]; char matricula[30]; char Disciplinas[30]; char notas[30]; struct cadastro *proxno;…
casked Guilherasmin silva 47 -
0
votes1
answer52
viewsQ: List does not print in C
My code is compiling, but why doesn’t my list print? Code: #include<stdio.h> #include<stdlib.h> struct numeros{ int num; }; typedef struct elemento* Lista; Lista* cria_lista(); void…
casked Guilherasmin silva 47 -
3
votes1
answer83
viewsQ: C code error
#include <stdio.h> typedef struct { char nome[10]; float altura; float peso; char cpf[12]; char sexo[10]; }Dados; void imc(Dados x); char consulte[12]; void imc(Dados x[1]) { int i,c;…
casked Guilherasmin silva 47