Skip to content

Instantly share code, notes, and snippets.

View AnneCosta's full-sized avatar
👩‍💻
Studying

Fabianne Costa AnneCosta

👩‍💻
Studying
View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
typedef struct no{
int info;
struct no* prox;
}Fila;
typedef struct{
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#define qtd 2
typedef struct{
char nome[30], email[40];
int dia, mes, ano;
}Pessoa;
typedef struct{