Click here to Skip to main content
15,887,454 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: genetic algorithm(G A) Pin
Rajesh R Subramanian30-Jun-09 22:58
professionalRajesh R Subramanian30-Jun-09 22:58 
JokeRe: genetic algorithm(G A) Pin
David Crow1-Jul-09 3:07
David Crow1-Jul-09 3:07 
Questionrunning a application as service Pin
rahuljin30-Jun-09 20:40
rahuljin30-Jun-09 20:40 
AnswerRe: running a application as service Pin
Madhu Nair30-Jun-09 20:46
Madhu Nair30-Jun-09 20:46 
GeneralRe: running a application as service Pin
Harsh Shankar30-Jun-09 21:00
Harsh Shankar30-Jun-09 21:00 
AnswerRe: running a application as service Pin
Michael Dunn30-Jun-09 20:47
sitebuilderMichael Dunn30-Jun-09 20:47 
AnswerRe: running a application as service Pin
David Crow1-Jul-09 3:13
David Crow1-Jul-09 3:13 
QuestionError "aggregate'main():: record r' has incomplete type and cannot be defined". ??? Pin
Razanust30-Jun-09 19:37
Razanust30-Jun-09 19:37 
My object is to read the text file containing the name and ages of the students, character by character and then store them in a structure. (For test purpose I want to store just one record) I wrote the following code but it is giving an error "aggregate'main():: record r' has incomplete type and cannot be defined". Why is this?


main()
{
     char ch[80],alpha[100],data[80];
    int n=0,sno=2;
    FILE*fp;
fp = fopen("records.txt","rb");
if(fp == NULL)
{
    puts("Cannot open file");
    exit(1);
}
    struct record;
    {
        char name[80];
        int age;
    };struct record r;

    while(1)
{
    ch[n]=fgetc(fp);
    if (isdigit(ch[n])&& ch[n-1]==32)
    {r.name[n]=ch[n-1];
    n=n+1;
    if (n==1)
    break;
    }
}
fclose(fp);
}

AnswerRe: Error "aggregate'main():: record r' has incomplete type and cannot be defined". ??? Pin
Madhu Nair30-Jun-09 19:43
Madhu Nair30-Jun-09 19:43 
AnswerRe: Error "aggregate'main():: record r' has incomplete type and cannot be defined". ??? Pin
chandu00430-Jun-09 19:44
chandu00430-Jun-09 19:44 
AnswerRe: Error "aggregate'main():: record r' has incomplete type and cannot be defined". ??? Pin
David Crow1-Jul-09 3:39
David Crow1-Jul-09 3:39 
Question880410 - CtlColor Pin
ilostmyid230-Jun-09 19:25
professionalilostmyid230-Jun-09 19:25 
AnswerRe: 880410 - CtlColor Pin
«_Superman_»30-Jun-09 19:52
professional«_Superman_»30-Jun-09 19:52 
AnswerRe: 880410 - CtlColor Pin
Chuck O'Toole30-Jun-09 23:07
Chuck O'Toole30-Jun-09 23:07 
QuestionHow To Dynamically Create and Display CListView object Pin
CodeMacDaddy30-Jun-09 10:24
CodeMacDaddy30-Jun-09 10:24 
QuestionRe: How To Dynamically Create and Display CListView object Pin
David Crow30-Jun-09 10:49
David Crow30-Jun-09 10:49 
AnswerRe: How To Dynamically Create and Display CListView object Pin
CodeMacDaddy8-Jul-09 3:33
CodeMacDaddy8-Jul-09 3:33 
QuestionQuestion! Pin
Razanust30-Jun-09 8:42
Razanust30-Jun-09 8:42 
AnswerRe: Question! [modified] Pin
Nuri Ismail30-Jun-09 9:01
Nuri Ismail30-Jun-09 9:01 
AnswerRe: Question! Pin
thebeekeeper30-Jun-09 9:05
thebeekeeper30-Jun-09 9:05 
GeneralRe: Question! Pin
Luc Pattyn30-Jun-09 10:38
sitebuilderLuc Pattyn30-Jun-09 10:38 
GeneralRe: Question! Pin
thebeekeeper30-Jun-09 10:52
thebeekeeper30-Jun-09 10:52 
AnswerRe: Question! Pin
Stuart Dootson30-Jun-09 9:48
professionalStuart Dootson30-Jun-09 9:48 
AnswerRe: Question! Pin
David Crow30-Jun-09 10:45
David Crow30-Jun-09 10:45 
Questionhow to use inpout32.dll in vc++208 clr project Pin
PIYUSH196630-Jun-09 8:11
PIYUSH196630-Jun-09 8:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.