Click here to Skip to main content
15,881,665 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
these are my structs :

C#
struct course{
    int no;
    float score;
    char name[30];
    int credits;
};
struct student{
    struct course c[3];
    long int no;
    char name[30];
};


i want to write these data to a text file , close the file
reopen it and print my data

i forgot the syntax!
any help will be fully appreciated!!
Posted
Comments
Sandeep Mewara 24-Jun-12 11:48am    
And whatever you forgot could have been checked in book or net. Tried?

Have you tried google? For example:
http://everything2.com/title/reading+and+writing+data+structures+in+C[^]

Good luck!
 
Share this answer
 
Comments
Espen Harlinn 24-Jun-12 11:48am    
Nice link :-)
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900