Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // A
- struct funcionario {
- char name[41],matricula[9],cargo[3];
- int dependentes;
- float salario;
- }
- //B
- struct agenda {
- char empresa[31],responsavel[41];
- int telefones[10];
- }contatos[50];
- //C
- struct ponto {
- float x,y;
- int ordem;
- }
- struct figura {
- struct ponto pontos[400];
- }
- int main() {
- struct figura figuras[50];
- }
Advertisement
Add Comment
Please, Sign In to add comment