Jump to content
Fórum Script Brasil
  • 0

Função Retorna 2 Valores.


== Douplus ==

Question

5 answers to this question

Recommended Posts

  • 0

exemplo no melhor estilo Turbo C++

#include <stdio.h>

struct registro {
  int valor;
  int valor2;
};

struct registro funcao()
{
  struct registro resultado;

  resultado.valor = 23;
  resultado.valor2 = 55;
  return(resultado);

}


int main()
{
  struct registro teste;

       teste = funcao();
         
        printf("variavel 1: %i \n", teste.valor);
        printf("variavel 2: %i \n", teste.valor2);

        return 0;
}

Aziz

azizvc@yahoo.com.br

Link to comment
Share on other sites

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
      651.8k
×
×
  • Create New...