opening file stored on internet via c++ [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
need a small program to learn basics on how to open a file stored on net for reading via c++.

One relatively easy way is to use libcurl: http://curl.haxx.se/

Related

C++ :Writing Header Files Such that it improves the efficiency of program [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Way to Create our own Header File as it should be included in our code so that code can use predefined statements....
This is a good tutorial to write header files. Hopefully this helps. http://www.learncpp.com/cpp-tutorial/19-header-files/

How to change capturing audio file format [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i'm using embarcadero c++;
how to edit capturing file formats
i need to make mp3 file.
default it makes ~2sec wma file's size ~ 331KB

Why can't we use C++ for web development? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Why can't we use C++ for web development?. I have been asking this question for a long time but i can't figure out the reason.
You can! There just isn't as many web based frameworks. Facebook is one example of using C++ on a website.

What are the c++ commands for case speaker? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I'm trying to make a MIDI song using c++. What are the commands?
If your platform is just "C++", then there are no such "commands". The C++ standard does not specify sound at all.

remote_api in google app engine is the best way to store data? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i don't know what the remote_api will do
thanks
You can read about remote_api here: http://code.google.com/appengine/articles/remote_api.html
At a high level, it allows you to write code which interacts with your appengine application code and datastore without having to go through the request/response model.