i am using dev blood shed c++ with windows vista 32
as for my problem how do you read from a .ini file and set it as a variable
and also write to a variable to a .ini file
p.s can you write and read from ftp
3: As for using FTP, you can, but that's probably going to be a bit above your level for now. When you feel you're ready to tackle it, then I recommend looking... oh, say... http://curl.haxx.se/libcurl/
FTP is short for File Transfer Protocol, and AFAIK the standard library doesn't include any classes for dealing with that. This is where I found out about libCurl from: http://stackoverflow.com/questions/1244095/c-ftp-library
As for what's the best Compiler/IDE combo... ah, hehehe. That's totally a matter of personal preference. I use Clang/Eclipse, but others may want to use Visual C++ Express, or g++/Code::Blocks... there's an article here that lists a few.
Thank you very much for the information @Duoas, and @Albatross ...
I am trying to use Ubuntu now, My windows just for my works only . . .
If like this programming code, i like to play around in Ubuntu.
I'm using IDE Geany, how do you think about it ?? is it nice or any better than geany maybe ??
:D
@Duoas, btw Simpleini is IDE or Compiler for C++ ?
@lucifier: I don't remember Geany too well. What I do remember is that I thought it was both too lightweight for me to consider it a full IDE, and too heavy for a lightweight IDE. :/ I'd suggest you try both and decide for yourself. :)
@harpo: Again, as far as I know, if you're going to use FTP, you're going to need a library that can deal with that protocol, and I seriously don't think the IOstream library includes pre-defined objects that can perform those communications. libcURL, however, AFAIK, supports FTP... and cURL is
a library for transferring data using various protocols.
ok so i read the input/output files thing and tested it and i now understand if and why i need a lib
my next question is part of my first after reading from a text document
how do i set a line not the whole document as a variable and displaying the value of the variable
aka the text file line
p.s thanks for the help so far