Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: i have made following programe but it doesn't work properly [CODE=cplusplus]#include<fstream.h> #include<conio.h> #include<stdio.h> #include<string.h> #include<stdlib.h> struct ini{ char itmna[35]; int itmcd,qty; float prc; }; class ret { ini in; int cd[20],qty1[20]; float prc1[20],tot; char itmna1[20][35]; public: void add() {char ch='y'; ofstream q("initial.dat",ios::app); do { cout<<"\nEnter the item code: "; cin>>in.itmcd; … | |
The End.