Autor |
Mensagem |
Energy Veterano |
# mar/07
ae pessoal estou lendo um ebook de c++ (teach yourself c++ in 14 days)
e ta dando pau toda hora que tem q usar
#include "structur.h"
nao tem na pasta "include" do borland esse arquivo, so no na pasta "bin"
se precisar baixa-lo alguem tem alguma ideia de onde? Pq eu tenho outro compilador q tb nao tem esse arquivo
abraços
|
Gan Veterano |
# mar/07
· votar
qual ide vc tá usando??
|
Energy Veterano |
# mar/07 · Editado por: Energy
· votar
nao sei se é isso mas estou usando o console wizard
|
Gan Veterano |
# mar/07
· votar
turbo c, visual c++??
|
Energy Veterano |
# mar/07
· votar
borland c++ builder 6
|
Energy Veterano |
# mar/07
· votar
e aí?
|
seila Veterano |
# mar/07
· votar
Energy
Eu baixava as bibliotecas tudo pelo editor do c++ mesmo.
|
seila Veterano |
# mar/07
· votar
Energy
#include "structur.h"
Isso é uma estrutura que vc cria não?
Tem q 'apontar' pro programa rodar corretamente, acho q isso não é uma biblioteca do c....
Não lembro muita coisa mais... o Locohawa deve lembrar...
|
Energy Veterano |
# mar/07
· votar
Tem q 'apontar' pro programa rodar corretamente, acho q isso não é uma biblioteca do c....
entao mas como faz isso?
abraços
|
stenyosullivan Veterano |
# mar/07
· votar
faz o seguinte, se tiver ela na pasta bin, copia pra pasta include, mas q tipo d operaçao vc qer fze? os 2 tradicionais sao esses:
#include <stdio.h>
#include <stdlib.h>
=)
|
Energy Veterano |
# mar/07
· votar
faz o seguinte, se tiver ela na pasta bin, copia pra pasta include, mas q tipo d operaçao vc qer fze? os 2 tradicionais sao esses:
#include <stdio.h>
#include <stdlib.h>
=)
ja fiz isso mais nao funcionou
An Example Using Structures
Listing 2.4 contains a program that has the user input three names and addresses and stores
those records in an array of structures. After the names are input, they are displayed on the
screen. The user is asked to choose one of the records. When the user chooses one of
the records, it is displayed on the screen. Listing 2.5 contains the header file for the
mailingListRecord structure used in the MAILLIST program shown in Listing 2.4.
o comeco do programa é assim:
Listing 2.4. MAILLIST.CPP.
1: #include <iostream.h>
2: #include <conio.h>
3: #include <stdlib.h>
4: #pragma hdrstop
5: #include “structur.h”
6: void displayRecord(int, mailingListRecord mlRec);
7: int main(int, char**)
8: {
9: //
10: // create an array of mailingListRecord structures
11: //
12: mailingListRecord listArray[3];
13: cout << endl;
14: int index = 0;
15: // get three records
16: //
17: do {
18: cout << “First Name: “;
19: cin.getline(listArray[index].firstName,
|
iznogood Veterano |
# mar/07
· votar
Borland? quem é esse boy?
|
stenyosullivan Veterano |
# mar/07
· votar
ql e o erro q ta dando?
eu uso o dev c++ e mto bom, tenta esse comp pra ve se funfa.
|
Energy Veterano |
# mar/07
· votar
eu tenho esse tb
dá erro tb
abraços
|
Energy Veterano |
# mar/07
· votar
up
|
stenyosullivan Veterano |
# mar/07
· votar
q tipo d erro q da? o que q fala?
|
ROTTA Veterano |
# mar/07
· votar
Energy
estou lendo um ebook de c++
Larga disso. Java é o canal... =)
Abraços.
|