Forum: C++ Oct 5th, 2007 |
| Replies: 5 Views: 1,426 this statement is entirely different from what you have in your code.
/*
toupper returns an INT value
toupper(a) will return 65 the ascii value for an uppercase A
*/
// the following... |
Forum: C++ Jul 13th, 2007 |
| Replies: 62 Views: 9,511 cool i started a new thread.
so from what i am gathering if i were to input the string
hello world
you dont want
dlrow olleh |
Forum: C++ Jul 11th, 2007 |
| Replies: 23 Views: 2,851 vectors are much like arrays
#include <vector>
int main()
{
//standard way to create an array
int myarray[someconstsize] = { 0 }; //assigns all values to default zero
//vector... |
Forum: C++ Jul 8th, 2007 |
| Replies: 4 Views: 16,757 easy!!
this is more of a command shell question though :-/
seperate each command with the & symbol
use a && to ensure that the following command is only run if the previous was... |
Forum: C++ Jun 29th, 2007 |
| Replies: 8 Views: 20,468 If you are still interested a few things you could do / should do.
get an XML Parser and treat all pages like XML, since HTML follows a strict coding format (or at least properly built pages do)... |
Forum: C++ Sep 23rd, 2006 |
| Replies: 8 Views: 11,906 cool, i will take that into consideration. Most of what i got to work came straight from the MS website;although, the first language i have ever worked in was C and that was a long time ago. Then i... |
Forum: C++ Sep 23rd, 2006 |
| Replies: 8 Views: 11,906 Already using Microsoft Visual C++ (in .NET 2003)
my school has an academic alliance with MS so i can get access to all of the tools and OS's they offer for free. so to be honest im using what... |
Forum: C++ Sep 12th, 2006 |
| Replies: 8 Views: 11,906 awesome, thank you very much! i will look into that immediately! |
Forum: C++ Sep 12th, 2006 |
| Replies: 8 Views: 11,906 Howdy there all again. I have been working in C# for some time and think i am ready to graduate to a real language that can actually work hand in hand with memory managment :P
so my first... |
Forum: C++ Sep 13th, 2004 |
| Replies: 5 Views: 2,357 HTML and programming are soo far about.
HTML Hyper Text Markup Language, its all formating, no programming at all
there is C, C++ and C#, i would recomend C++ and
... |
Forum: C++ Sep 8th, 2004 |
| Replies: 14 Views: 5,455 open up dos and navigate to the program and run it, then it will stay on the screen. there is also a fix for this too, that will wait for one last piece of input for the user before it closes. but... |
Forum: C++ Jun 6th, 2004 |
| Replies: 2 Views: 7,177 i dont know very much about c as of yet, but from what happend to me and looking at your source you forgot to add a line for what to do if your choice is somthing other than 0 1, it needs a value for... |