S
ssmile03
I have a LINE having different entries (data, char, string, int, space, blank) like | A | | 12 | | SPACE | BLANK | RESERVED 4 BYTE | 90 | 45 | RESERVED 1 BYTE | | ...
How to represent SPACE, BLANK, RESERVED 1 BYTE and RESERVED 4 BYTE in a line when allowed to write to a file through ofstream inp?
E.g:
std::cout <<"PLEASE ENTER THE QUANTITY: ";
cin >> qty;
std::cout <<"PLEASE ENTER THE name: ";
cin >> dPrice;
inp <<"ENTRY=" "|" " " "5000" " " "|" " " "5001" " " "|" " " "0" " " "|" ..
Thanks
How to represent SPACE, BLANK, RESERVED 1 BYTE and RESERVED 4 BYTE in a line when allowed to write to a file through ofstream inp?
E.g:
std::cout <<"PLEASE ENTER THE QUANTITY: ";
cin >> qty;
std::cout <<"PLEASE ENTER THE name: ";
cin >> dPrice;
inp <<"ENTRY=" "|" " " "5000" " " "|" " " "5001" " " "|" " " "0" " " "|" ..
Thanks