If you haven't learned C/C++ yet, then you'll need to learn as much as you can before trying to integrate the database stuff. here's a decent,...
I know. It's a difficult thing to relate to someone that perceived harshness is not really that at all, but rather frustration from seeing...
They seldom seem to try. :( they just need a little nudge though, I think. :D
Do you mean a c-style string? char s[] = "some string"; std::cout << s << std::endl; Note: a cstring is terminated by '\0' so that it...
Try not to view it that way, but rather an opportunity to challenge yourself; from what I've seen, shabbir is quite helpful. Folks are willing...
initialize variables for largest and smallest loop(while inputted numbers are valid) { if(largest_variable less than current_value)...
c++ is a bit advanced for me, but I *think* you can use a vector declare a 2d vector std::vector<std::vector<int> > intervals; add some...
if games and such, maybe hangman, word / phrase guess, etc. an address book sort of program or other simple data storage type of app. lastly,...
unless you're required for whatever reason to use such an outdated compiler like turbo, you'd be better off using a modern compiler that works...
you really will learn more by trying... :) as for the program, I'd try an array of structures. maybe your data could look something like...
With homework, you'd be better off posting what you've tried. I'll try a give a few ideas based on what you've posted though. replace spaces...
#include <stdio.h> #include <string.h> #include <limits.h> int main(void) { char buf[10] = { 0 }; int i, num; do {...
mill over http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?id=1043284376&answer=1044841143 for a detailed explanation. copy the link in red into...
I'd add that you can use private members to "hide" data types from multiple folks working on a project. Perhaps group A devises the class while...
Not sure what you mean by programs... do you mean source? How about inputting a few integers into a vector and then output what's been stored....
no worries; good luck and happy coding. :)
Gotcha; it's a shame that occurs.
the more info you provide (as well as the code you've tried), the more likelihood you'll get a response. I'd think you'd want/need a structure or...
Greetings: I've had an interest in various programming languages for many years, but I haven't really pursued any formal coursework beyond a...
google thefreecountry for a list of freeware compilers available for different OSes. evidently, this site forbids direct links in posts. HTH
Separate names with a comma.