Hye.
i write this code to get inpur from user such as ram and hard disk capacity as integer type using structures. After that i want to create a file in which i want to save that data. In the code below it is getting input from user but not creating file. Plz tell where is my mistake.
Code is:
#include <conio.h>
#include <iostream.h>
#include <fstream.h>
void main()
{
struct computerspec
{
int ram;
int hdisk;
}compuspec;
cout<<"Enter the RAM capacity"<<endl;
cin>>compuspec.ram;
cout<<endl;
cout<<"Enter the Hard Disk capacity"<<endl;
cin>>compuspec.hdisk;
cout<<endl;
ofstream file;
file.open("computerspec.txt");
file<<"ComputerSpec attributes/Data members\n";
file<<"RAM: "<<compuspec.ram<<endl;
file<<"Hdisk: "<<compuspec.hdisk<<endl;
file.close();
getch();
}