Struct presenting problem

Asked

Viewed 45 times

1

I am unable to compile the program shows error in variable declaration struct product, when I try to create an instance in the main.

#include <iostream>

using namespace std;


struct produto;

int main() {
    produto prod1={"Caneca",5.00}; // Ao compilar apresenta erro nessa linha.
    cout<<"Nome do Produto: \n";
    cin>>prod1.nome;
    cout<<"Valor de venda: \n";
    cin>>prod1.valorvenda;


    system("pause");
    return 0;
}


struct produto{
    char nome[21];
    float valorvenda;
};

1 answer

3


Browser other questions tagged

You are not signed in. Login or sign up in order to post.