1 / 9

Profs.:

Profs.:. Roberto Medeiros de Faria Ulrich Schiel. Carga Horária:. 60 h. Introdução à Programação. Capítulo 9. Estruturas e Arquivos. Introdução à Programação. Tópicos 9.1 Introdução 9.2 Declaração se Estruturas 9.3 Uso de Estruturas 9.4 Definição de Arquivos

ziven
Download Presentation

Profs.:

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Profs.: Roberto Medeiros de Faria Ulrich Schiel Carga Horária: 60 h Introdução à Programação Capítulo 9 Estruturas e Arquivos

  2. Introdução à Programação Tópicos 9.1 Introdução 9.2 Declaração se Estruturas 9.3 Uso de Estruturas 9.4 Definição de Arquivos 9.5 Abertura e fechamento de arquivos 9.6 Escrever e ler arquivos 9.7 Um exemplo

  3. Introdução à Programação Combinação heterogênea de variáveis struct rótulo { decl1; ... decln; } nome; struct { int dia; char mes[3]; int ano; } data;

  4. 7.3 uso • Seleção • strcpy(data.mes, “Abr”); • data.dia = 8; • data.ano = 2007;

  5. 7.3. Uso Uso do rótulo struct data { decl1; ... decln; } ; struct data hoje, vencimento; ... hoje = {8, “Abr”, 2007}; vencimento = hoje;

  6. 9.4 Arquivos • Exemplo • FILE *perguntas; • Variáveis para Arquivos • FILE *apontador; • Funções • fopen(“nome-do-arquivo”, “modo-de-acesso”);(modo pode ser “w”, “r” ou “a”) • fwrite(p, bytes, número, stream); • fread(p, bytes, número, stream); • feof() • fclose(stream)

  7. 9.4 Arquivos • Exemplo • FILE *perguntas; • char pergunta[] = “Qual e´ teu nome?”; • Funções • fopen(“enquete.txt”, “w”); • fwrite(pergunta, size(pergunta), 1, perguntas); • fread(pergunta, 20, 1, perguntas); • feof(); (!=0 se for o fim do arquivo) • fclose(perguntas);

  8. 9.4 Arquivos #include <stdio.h> #include <string.h> main(void) { FILE *per; char pergunta[40]; strcpy(pergunta, " Primeira pergunta?"); pergunta[0] = '0'; per = fopen("questoes.txt", "w"); fwrite(pergunta, 40, 1, per); fwrite("1Segunda pergunta?", 40, 1, per); fclose(per); /* reabertura do arquivo */ fopen("questoes.txt","r"); fread(pergunta, 40, 1, per); printf("\nA pergunta recuperada eh: %s", pergunta); fread(pergunta, 40, 1, per); printf("\nA segunda pergunta recuperada eh: %s", pergunta); fclose(per); getch();

  9. Ulrich Schiel UNIVERSIDADE FEDERAL DE CAMPINA GRANDE CENTRO DE CIÊNCIAS E TECNOLOGIA DEPARTAMENTO DE SISTEMAS E COMPUTAÇÃO

More Related