Jump to content
Fórum Script Brasil
  • 0

Ler arquivo de texto e passar como função


Diogo Rupolo

Question

Pessoal estou tentando ler um arquivo txt, salvar em um ponteiro e passar como endereço para uma função. Por exemplo: tenho o seguinte arquivo txt:

(matriz de duas colunas)

no prof

1 0

2 4

5 6

E o seguinte código:

#include<stdio.h>

using namespace std;

typedef struct lista{
  int *list;
  int tamanho;
} LISTA;

typedef struct elemento{
  int no;
  int prof;
} ELEMENTO;

int no,prof;

int main ()

{
   FILE *lista=fopen("lista.txt","r");
          for (int i=1;i<=3;i++)
          {
              fscanf (lista,"%d%d",&no,&prof);
          }
          fclose (lista);

}
Preciso passar essa lista que contém o nó (primeira coluna) e profundidade (segunda coluna) para uma função do tipo:
void operador1(LISTA *lista);

Como posso fazer isso?

Att

Diogo Rupolo

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...